quintessence/modules/unstable.nix
2026-02-12 15:00:24 -08:00

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
];
}