add wpa_supplicant / eiwd packages to base build

This commit is contained in:
robert jakub 2024-10-30 18:48:35 +01:00
parent 6691cc402d
commit 64ea0f588c
3 changed files with 15 additions and 15 deletions

View File

@ -7,12 +7,16 @@
experimental-features = ["nix-command" "flakes"];
};
services.openssh.enable = true;
environment.systemPackages = [
pkgs.vim
pkgs.alejandra
pkgs.mc
];
boot.supportedFilesystems.zfs = false;
environment.systemPackages = with pkgs; [
wirelesstools
iw
gitMinimal
wpa_supplicant
eiwd
];
users.users.oom = {
isNormalUser = true;
extraGroups = ["wheel"];

View File

@ -81,10 +81,4 @@
}
];
};
environment.systemPackages = [
pkgs.wirelesstools
pkgs.iw
pkgs.gitMinimal
];
}

View File

@ -104,10 +104,12 @@
];
};
environment.systemPackages = [
pkgs.wirelesstools
pkgs.iw
pkgs.gitMinimal
environment.systemPackages = with pkgs; [
wirelesstools
iw
gitMinimal
wpa_supplicant
eiwd
];
nix.settings.experimental-features = ["nix-command" "flakes"];