Correction on configuration file

This commit is contained in:
2026-01-24 22:25:39 +01:00
parent 008cdf87ee
commit bc7e2cd7d2
+10 -7
View File
@@ -16,6 +16,9 @@
./configurations/users.nix ./configurations/users.nix
./configurations/home-manager.nix ./configurations/home-manager.nix
# Modules
inputs.self.nixos
]; ];
nixpkgs = { nixpkgs = {
@@ -46,15 +49,15 @@
time.timeZone = "Europe/Brussels"; time.timeZone = "Europe/Brussels";
# System services # System services
nixos.boot.systemd.enable = true; within.boot.systemd.enable = true;
nixos.boot.plymouth.enable = true; within.boot.plymouth.enable = true;
nixos.graphics.nvidia.base.enable = true; within.graphics.nvidia.base.enable = true;
nixos.audio.pipewire.enable = true; within.audio.pipewire.enable = true;
nixos.networks.dns.enable = true; within.networks.dns.enable = true;
nixos.networks.manager.enable = true; within.networks.manager.enable = true;
# System configurations # System configurations
nixos.keyboard.apple.enable = true; within.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";