modules: split into categories

This commit is contained in:
Anthony Rodriguez 2024-09-25 08:35:08 +02:00
parent 9198a1af8a
commit 9af73f65f4
Signed by: nezia
GPG key ID: EE3BE97C040A86CE
13 changed files with 29 additions and 9 deletions

View file

@ -1,12 +1,8 @@
_: { _: {
imports = [ imports = [
./docker.nix ./gui
./pipewire.nix ./other
./nvidia.nix ./services
./gnome.nix ./tui
./gaming.nix
./wezterm.nix
./stylix.nix
./neovim.nix
]; ];
} }

6
modules/gui/default.nix Normal file
View file

@ -0,0 +1,6 @@
_: {
imports = [
./gnome.nix
./wezterm.nix
];
}

View file

@ -0,0 +1,7 @@
_: {
imports = [
./gaming.nix
./nvidia.nix
./stylix.nix
];
}

View file

@ -48,7 +48,7 @@ in {
gtk.enable = false; gtk.enable = false;
gnome.enable = false; gnome.enable = false;
}; };
image = lib.mkDefault ../wallpapers/nix-wallpaper-nineish-catppuccin-frappe-alt.svg; image = lib.mkDefault ../../wallpapers/nix-wallpaper-nineish-catppuccin-frappe-alt.svg;
}; };
}; };
} }

View file

@ -0,0 +1,6 @@
_: {
imports = [
./docker.nix
./pipewire.nix
];
}

5
modules/tui/default.nix Normal file
View file

@ -0,0 +1,5 @@
_: {
imports = [
./neovim.nix
];
}