modules: split into categories
This commit is contained in:
parent
9198a1af8a
commit
9af73f65f4
13 changed files with 29 additions and 9 deletions
|
@ -1,12 +1,8 @@
|
|||
_: {
|
||||
imports = [
|
||||
./docker.nix
|
||||
./pipewire.nix
|
||||
./nvidia.nix
|
||||
./gnome.nix
|
||||
./gaming.nix
|
||||
./wezterm.nix
|
||||
./stylix.nix
|
||||
./neovim.nix
|
||||
./gui
|
||||
./other
|
||||
./services
|
||||
./tui
|
||||
];
|
||||
}
|
||||
|
|
6
modules/gui/default.nix
Normal file
6
modules/gui/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
_: {
|
||||
imports = [
|
||||
./gnome.nix
|
||||
./wezterm.nix
|
||||
];
|
||||
}
|
7
modules/other/default.nix
Normal file
7
modules/other/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
_: {
|
||||
imports = [
|
||||
./gaming.nix
|
||||
./nvidia.nix
|
||||
./stylix.nix
|
||||
];
|
||||
}
|
|
@ -48,7 +48,7 @@ in {
|
|||
gtk.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;
|
||||
};
|
||||
};
|
||||
}
|
6
modules/services/default.nix
Normal file
6
modules/services/default.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
_: {
|
||||
imports = [
|
||||
./docker.nix
|
||||
./pipewire.nix
|
||||
];
|
||||
}
|
5
modules/tui/default.nix
Normal file
5
modules/tui/default.nix
Normal file
|
@ -0,0 +1,5 @@
|
|||
_: {
|
||||
imports = [
|
||||
./neovim.nix
|
||||
];
|
||||
}
|
Loading…
Reference in a new issue