group pochita
This commit is contained in:
parent
9f1f3c2614
commit
642ca932b7
1 changed files with 21 additions and 15 deletions
|
|
@ -8,23 +8,29 @@
|
||||||
(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 = [ ];
|
||||||
|
};
|
||||||
fileSystems."/" = {
|
kernelModules = [ ];
|
||||||
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
|
extraModulePackages = [ ];
|
||||||
fsType = "ext4";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
fileSystems."/boot/firmware" = {
|
fileSystems = {
|
||||||
device = "/dev/disk/by-uuid/2178-694E";
|
"/" = {
|
||||||
fsType = "vfat";
|
device = "/dev/disk/by-uuid/44444444-4444-4444-8888-888888888888";
|
||||||
options = [
|
fsType = "ext4";
|
||||||
"fmask=0022"
|
};
|
||||||
"dmask=0022"
|
|
||||||
];
|
"/boot/firmware" = {
|
||||||
|
device = "/dev/disk/by-uuid/2178-694E";
|
||||||
|
fsType = "vfat";
|
||||||
|
options = [
|
||||||
|
"fmask=0022"
|
||||||
|
"dmask=0022"
|
||||||
|
];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
swapDevices = [ ];
|
swapDevices = [ ];
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue