group pochita

This commit is contained in:
Osman Faruk Bayram 2025-11-07 10:15:58 +03:00
parent 9f1f3c2614
commit 642ca932b7

View file

@ -8,17 +8,22 @@
(modulesPath + "/installer/scan/not-detected.nix") (modulesPath + "/installer/scan/not-detected.nix")
]; ];
boot.initrd.availableKernelModules = [ ]; boot = {
boot.initrd.kernelModules = [ ]; initrd = {
boot.kernelModules = [ ]; availableKernelModules = [ ];
boot.extraModulePackages = [ ]; kernelModules = [ ];
};
kernelModules = [ ];
extraModulePackages = [ ];
};
fileSystems."/" = { fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888"; device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
fsType = "ext4"; fsType = "ext4";
}; };
fileSystems."/boot/firmware" = { "/boot/firmware" = {
device = "/dev/disk/by-uuid/2178-694E"; device = "/dev/disk/by-uuid/2178-694E";
fsType = "vfat"; fsType = "vfat";
options = [ options = [
@ -26,6 +31,7 @@
"dmask=0022" "dmask=0022"
]; ];
}; };
};
swapDevices = [ ]; swapDevices = [ ];