Fix mounting of /boot
Fix importing disko for x201
This commit is contained in:
parent
955f9e3a07
commit
3d33b0c7a5
1 changed files with 3 additions and 3 deletions
|
@ -103,12 +103,12 @@
|
||||||
});
|
});
|
||||||
|
|
||||||
x201 = mkNixosSystem ({ pkgs, lib, ... }: {
|
x201 = mkNixosSystem ({ pkgs, lib, ... }: {
|
||||||
|
imports = [ inputs.disko.nixosModules.disko ];
|
||||||
config = {
|
config = {
|
||||||
networking.hostName = "x201";
|
networking.hostName = "x201";
|
||||||
|
|
||||||
boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usb_storage" ];
|
boot.initrd.availableKernelModules = [ "ehci_pci" "ahci" "usb_storage" ];
|
||||||
|
|
||||||
imports = [ inputs.disko.nixosModules.disko ];
|
|
||||||
|
|
||||||
disko.devices = {
|
disko.devices = {
|
||||||
disk = {
|
disk = {
|
||||||
|
@ -176,11 +176,11 @@
|
||||||
fsType = "ext4";
|
fsType = "ext4";
|
||||||
};
|
};
|
||||||
|
|
||||||
"boot" =
|
"/boot" =
|
||||||
{
|
{
|
||||||
device = "/dev/disk/by-uuid/560E-F8A2";
|
device = "/dev/disk/by-uuid/560E-F8A2";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask = 0022 " " dmask=0022" ];
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue