group ymir

This commit is contained in:
Osman Faruk Bayram 2025-11-07 10:16:27 +03:00
parent ed558593c0
commit 224beca86f

View file

@ -12,30 +12,35 @@
(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ boot = {
"xhci_pci" initrd = {
"ahci" availableKernelModules = [
"nvme" "xhci_pci"
"usbhid" "ahci"
"usb_storage" "nvme"
"sd_mod" "usbhid"
]; "usb_storage"
boot.initrd.kernelModules = [ ]; "sd_mod"
boot.kernelModules = [ "kvm-intel" ]; ];
boot.extraModulePackages = [ ]; kernelModules = [ ];
};
fileSystems."/" = { kernelModules = [ "kvm-intel" ];
device = "/dev/disk/by-uuid/fd6792b4-d1ec-493c-a686-64dbeaac3371"; extraModulePackages = [ ];
fsType = "ext4";
}; };
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/fd6792b4-d1ec-493c-a686-64dbeaac3371";
fsType = "ext4";
};
fileSystems."/boot" = { "/boot" = {
device = "/dev/disk/by-uuid/383D-1E8A"; device = "/dev/disk/by-uuid/383D-1E8A";
fsType = "vfat"; fsType = "vfat";
options = [ options = [
"fmask=0077" "fmask=0077"
"dmask=0077" "dmask=0077"
]; ];
};
}; };
swapDevices = [ swapDevices = [