From bc7e2cd7d2a1beb3e130ebf5ea257dcc0972563a Mon Sep 17 00:00:00 2001 From: Laurent Gueret Date: Sat, 24 Jan 2026 22:25:39 +0100 Subject: [PATCH] Correction on configuration file --- nixos/configuration.nix | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) 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";