nixos-hardware ADDED APFEL

This commit is contained in:
kenji
2025-07-09 22:04:47 -05:00
parent 5a6cdb3171
commit 5ce6b68252
2 changed files with 8 additions and 1 deletions
+2
View File
@@ -30,6 +30,8 @@
jellyfin-media-player jellyfin-media-player
goverlay goverlay
geekbench_6 geekbench_6
gparted
ntfs3g
]; ];
}; };
Hyprland = { Hyprland = {
+6 -1
View File
@@ -8,7 +8,7 @@
[ (modulesPath + "/installer/scan/not-detected.nix") [ (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "sd_mod" ]; boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" ];
boot.initrd.kernelModules = [ ]; boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ]; boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
@@ -30,6 +30,11 @@
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/mnt/APFEL" =
{ device = "/dev/disk/by-uuid/394f67b9-e75b-40cc-9b15-28bbda40fff4";
fsType = "ext4";
};
swapDevices = swapDevices =
[ { device = "/dev/disk/by-uuid/b02ef55c-4caf-4a24-a6a2-fb8001eafe22"; } [ { device = "/dev/disk/by-uuid/b02ef55c-4caf-4a24-a6a2-fb8001eafe22"; }
]; ];