Move packages.nix to environment/packages.nix

This commit is contained in:
ItsDrike 2024-07-18 12:36:17 +02:00
parent 47db693f2e
commit 99994c1472
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
3 changed files with 3 additions and 8 deletions

View file

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

View file

@ -1,5 +1,7 @@
{pkgs, ...}: { {pkgs, ...}: {
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
killall
openssl
curl curl
wget wget
pciutils pciutils

View file

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