diff --git a/configuration.nix b/configuration.nix index 67a0cee..1e91dda 100644 --- a/configuration.nix +++ b/configuration.nix @@ -32,7 +32,7 @@ openssh htop git - neofetch + fastfetch ]; services.openssh.enable = true; @@ -42,6 +42,5 @@ system.copySystemConfiguration = true; - system.stateVersion = "25.11"; - + system.stateVersion = "26.05"; } diff --git a/hardware-configuration.nix b/hardware-configuration.nix index 09321e4..23d7b5c 100644 --- a/hardware-configuration.nix +++ b/hardware-configuration.nix @@ -6,23 +6,23 @@ { imports = [ ]; - boot.initrd.availableKernelModules = [ "ata_piix" "ohci_pci" "ehci_pci" "ahci" "sd_mod" "sr_mod" ]; + boot.initrd.availableKernelModules = [ "sd_mod" "sr_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/73e7da32-81f4-43b2-b075-6687005ffdbb"; + { device = "/dev/disk/by-uuid/94775292-6fce-4e1a-b8f1-e99508b509ed"; fsType = "ext4"; }; fileSystems."/boot" = - { device = "/dev/disk/by-uuid/a843cc6e-365c-4efe-aa60-059dd568d546"; + { device = "/dev/disk/by-uuid/5d81f282-c3e2-4bc3-bbe9-857809194f90"; fsType = "ext4"; }; swapDevices = [ ]; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - virtualisation.virtualbox.guest.enable = true; + virtualisation.hypervGuest.enable = true; }