mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-10 17:34:05 -05:00
Split config down further
This commit is contained in:
parent
9eb20764d5
commit
dd7683a756
3 changed files with 17 additions and 15 deletions
|
|
@ -7,23 +7,8 @@
|
|||
system.stateVersion = "24.05";
|
||||
time.timeZone = "America/New_York";
|
||||
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
wget
|
||||
git
|
||||
screen
|
||||
curl
|
||||
firefox
|
||||
fish
|
||||
];
|
||||
|
||||
users.users.crow = {
|
||||
isNormalUser = true;
|
||||
extraGroups = [ "wheel" "networking" ];
|
||||
};
|
||||
|
||||
programs.sway = {
|
||||
enable = true;
|
||||
wrapperFeatures.gtk = true;
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -3,5 +3,6 @@ imports = [
|
|||
./core.nix
|
||||
./boot.nix
|
||||
./networking.nix
|
||||
./programs.nix
|
||||
];
|
||||
}
|
||||
|
|
|
|||
16
modules/programs.nix
Normal file
16
modules/programs.nix
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
{
|
||||
environment.systemPackages = with pkgs; [
|
||||
neovim
|
||||
wget
|
||||
git
|
||||
screen
|
||||
curl
|
||||
firefox
|
||||
fish
|
||||
];
|
||||
|
||||
programs.sway = {
|
||||
enable = true;
|
||||
wrapperFeatures.gtk = true;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue