diff --git a/Hosts/hertog-server/configuration.nix b/Hosts/hertog-server/configuration.nix index d25bb1c..c057f5d 100644 --- a/Hosts/hertog-server/configuration.nix +++ b/Hosts/hertog-server/configuration.nix @@ -24,5 +24,5 @@ # this value at the release version of the first install of this system. # Before changing this value read the documentation for this option # (e.g. man configuration.nix or on https://nixos.org/nixos/options.html). - system.stateVersion = "23.05"; # Did you read the comment? + system.stateVersion = "24.05"; # Did you read the comment? } diff --git a/Hosts/hertog-server/hardware-configuration.nix b/Hosts/hertog-server/hardware-configuration.nix index 15fb640..587bb06 100644 --- a/Hosts/hertog-server/hardware-configuration.nix +++ b/Hosts/hertog-server/hardware-configuration.nix @@ -8,18 +8,18 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "sd_mod" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usbhid" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/94c7af9d-2a39-4ae1-9447-91b1bacec334"; + { device = "/dev/disk/by-uuid/e2d2abbc-0184-4ca3-8170-2500bc5577b0"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/B7A8-E52E"; + { device = "/dev/disk/by-uuid/3370-7B41"; fsType = "vfat"; }; @@ -33,6 +33,5 @@ # networking.interfaces.enp6s0.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; } diff --git a/Hosts/hertog-server/packages.nix b/Hosts/hertog-server/packages.nix index 480e5c3..5576da4 100644 --- a/Hosts/hertog-server/packages.nix +++ b/Hosts/hertog-server/packages.nix @@ -7,6 +7,7 @@ iftop openssl git + btop ]; }; }