diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 88e8900..ea1c4ae 100755 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -16,6 +16,9 @@ ./configurations/users.nix ./configurations/home-manager.nix + # Modules + inputs.self.nixos + ]; nixpkgs = { @@ -46,15 +49,15 @@ time.timeZone = "Europe/Brussels"; # System services - 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; + within.boot.systemd.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; # System configurations - nixos.keyboard.apple.enable = true; + within.keyboard.apple.enable = true; # https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion system.stateVersion = "25.11";