Fix on modules settings

This commit is contained in:
2026-01-24 19:07:42 +01:00
parent 625e7d161b
commit 008cdf87ee
4 changed files with 16 additions and 23 deletions
+3 -5
View File
@@ -1,7 +1,5 @@
{ {
within = { shell = import ./services/shell.nix;
shell = import ./services/shell.nix; gnome = import ./services/gnome.nix;
gnome = import ./services/gnome.nix; zed = import ./submodules/zed.nix;
zed = import ./submodules/zed.nix;
};
} }
+5 -7
View File
@@ -1,9 +1,7 @@
{ {
within = { boot = import ./services/boot.nix;
boot = import ./services/boot.nix; graphics = import ./services/graphics.nix;
graphics = import ./services/graphics.nix; networks = import ./services/networks.nix;
networks = import ./services/networks.nix; audio = import ./services/audio.nix;
audio = import ./services/audio.nix; keyboard = import ./services/keyboard.nix;
keyboard = import ./services/keyboard.nix;
};
} }
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
systemd = import ../submodules/systemd-boot.nix; systemd = import ../submodules/systemd-boot.nix;
plymouth = ../submodules/plymouth.nix; plymouth = import ../submodules/plymouth.nix;
} }
+7 -10
View File
@@ -16,9 +16,6 @@
./configurations/users.nix ./configurations/users.nix
./configurations/home-manager.nix ./configurations/home-manager.nix
# Modules
inputs.self.nixos.within
]; ];
nixpkgs = { nixpkgs = {
@@ -49,15 +46,15 @@
time.timeZone = "Europe/Brussels"; time.timeZone = "Europe/Brussels";
# System services # System services
within.boot.bootd.enable = true; nixos.boot.systemd.enable = true;
within.boot.plymouth.enable = true; nixos.boot.plymouth.enable = true;
within.graphics.nvidia.base.enable = true; nixos.graphics.nvidia.base.enable = true;
within.audio.pipewire.enable = true; nixos.audio.pipewire.enable = true;
within.networks.dns.enable = true; nixos.networks.dns.enable = true;
within.networks.manager.enable = true; nixos.networks.manager.enable = true;
# System configurations # System configurations
within.keyboard.apple.enable = true; nixos.keyboard.apple.enable = true;
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
system.stateVersion = "25.11"; system.stateVersion = "25.11";