Split config down further

This commit is contained in:
Patrick Menking 2024-09-16 08:45:50 -04:00
parent 9eb20764d5
commit dd7683a756
3 changed files with 17 additions and 15 deletions

View file

@ -7,23 +7,8 @@
system.stateVersion = "24.05"; system.stateVersion = "24.05";
time.timeZone = "America/New_York"; time.timeZone = "America/New_York";
environment.systemPackages = with pkgs; [
neovim
wget
git
screen
curl
firefox
fish
];
users.users.crow = { users.users.crow = {
isNormalUser = true; isNormalUser = true;
extraGroups = [ "wheel" "networking" ]; extraGroups = [ "wheel" "networking" ];
}; };
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
} }

View file

@ -3,5 +3,6 @@ imports = [
./core.nix ./core.nix
./boot.nix ./boot.nix
./networking.nix ./networking.nix
./programs.nix
]; ];
} }

16
modules/programs.nix Normal file
View file

@ -0,0 +1,16 @@
{
environment.systemPackages = with pkgs; [
neovim
wget
git
screen
curl
firefox
fish
];
programs.sway = {
enable = true;
wrapperFeatures.gtk = true;
};
}