5d8413a85a
The `specialArgs` defined in `hosts` has kept some modules from working in external flakes. Instead, we simply enumerate packages in `hosts` which should be pulled from `unstablePkgs`.
8 lines
120 B
Nix
8 lines
120 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
discord
|
|
element-desktop
|
|
signal-desktop
|
|
];
|
|
}
|
|
|