From c543411a37693ad8d37b7a55e8fede1973910843 Mon Sep 17 00:00:00 2001 From: skimrme Date: Thu, 25 Jun 2026 14:36:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E4=B8=8D=E5=86=8D=E6=94=AF?= =?UTF-8?q?=E6=8C=81=E7=9A=84neofetch=EF=BC=8C=E5=B9=B6=E4=B8=94=E4=BF=AE?= =?UTF-8?q?=E6=94=B9=E7=B3=BB=E7=BB=9F=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- configuration.nix | 5 ++--- hardware-configuration.nix | 8 ++++---- 2 files changed, 6 insertions(+), 7 deletions(-) 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; }