8 lines
357 B
Nix
8 lines
357 B
Nix
## Pulls packages specifically from unstable repo, rather than the default stable.
|
|
## Note: this may not work! This *should* work, but I use the opposite setup--unstable, with specific stable packages--so this is a bit more spaghetti.
|
|
{ inputs, config, pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with inputs.nixpkgs-unstable; [
|
|
signal-desktop
|
|
];
|
|
}
|