Add killall package

This commit is contained in:
ItsDrike 2024-06-10 20:19:35 +02:00
parent 8390c54639
commit 21cf34330e
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
2 changed files with 9 additions and 0 deletions

View file

@ -13,5 +13,6 @@ _: {
./network.nix ./network.nix
./bluetooth.nix ./bluetooth.nix
./localisation.nix ./localisation.nix
./packages.nix
]; ];
} }

View file

@ -0,0 +1,8 @@
{
pkgs,
...
}: {
environment.systemPackages = with pkgs; [
killall
];
}