Fix on modules settings
This commit is contained in:
@@ -1,7 +1,5 @@
|
||||
{
|
||||
within = {
|
||||
shell = import ./services/shell.nix;
|
||||
gnome = import ./services/gnome.nix;
|
||||
zed = import ./submodules/zed.nix;
|
||||
};
|
||||
shell = import ./services/shell.nix;
|
||||
gnome = import ./services/gnome.nix;
|
||||
zed = import ./submodules/zed.nix;
|
||||
}
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
{
|
||||
within = {
|
||||
boot = import ./services/boot.nix;
|
||||
graphics = import ./services/graphics.nix;
|
||||
networks = import ./services/networks.nix;
|
||||
audio = import ./services/audio.nix;
|
||||
keyboard = import ./services/keyboard.nix;
|
||||
};
|
||||
boot = import ./services/boot.nix;
|
||||
graphics = import ./services/graphics.nix;
|
||||
networks = import ./services/networks.nix;
|
||||
audio = import ./services/audio.nix;
|
||||
keyboard = import ./services/keyboard.nix;
|
||||
}
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{
|
||||
systemd = import ../submodules/systemd-boot.nix;
|
||||
plymouth = ../submodules/plymouth.nix;
|
||||
plymouth = import ../submodules/plymouth.nix;
|
||||
}
|
||||
|
||||
+7
-10
@@ -16,9 +16,6 @@
|
||||
./configurations/users.nix
|
||||
./configurations/home-manager.nix
|
||||
|
||||
# Modules
|
||||
inputs.self.nixos.within
|
||||
|
||||
];
|
||||
|
||||
nixpkgs = {
|
||||
@@ -49,15 +46,15 @@
|
||||
time.timeZone = "Europe/Brussels";
|
||||
|
||||
# System services
|
||||
within.boot.bootd.enable = true;
|
||||
within.boot.plymouth.enable = true;
|
||||
within.graphics.nvidia.base.enable = true;
|
||||
within.audio.pipewire.enable = true;
|
||||
within.networks.dns.enable = true;
|
||||
within.networks.manager.enable = true;
|
||||
nixos.boot.systemd.enable = true;
|
||||
nixos.boot.plymouth.enable = true;
|
||||
nixos.graphics.nvidia.base.enable = true;
|
||||
nixos.audio.pipewire.enable = true;
|
||||
nixos.networks.dns.enable = true;
|
||||
nixos.networks.manager.enable = true;
|
||||
|
||||
# System configurations
|
||||
within.keyboard.apple.enable = true;
|
||||
nixos.keyboard.apple.enable = true;
|
||||
|
||||
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion
|
||||
system.stateVersion = "25.11";
|
||||
|
||||
Reference in New Issue
Block a user