修改不再支持的neofetch,并且修改系统版本

This commit is contained in:
2026-06-25 14:36:16 +08:00
parent 4fac466813
commit c543411a37
2 changed files with 6 additions and 7 deletions

View File

@@ -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";
}

View File

@@ -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;
}