This commit is contained in:
2026-01-05 12:53:38 +03:00
parent b6ea091e38
commit e4053b5943
3 changed files with 10 additions and 46 deletions
-23
View File
@@ -1,23 +0,0 @@
{
config,
lib,
pkgs,
modulesPath,
...
}:
{
fileSystems = {
"/" = {
device = lib.mkForce "/dev/disk/by-partlabel/disk-main-root"; # "/dev/disk/by-partlabel/disk-main-root";
fsType = "ext4";
};
};
# swapDevices = [
# { device = "/dev/disk/by-partlabel/disk-main-swap"; }
# ];
networking.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
}
-1
View File
@@ -40,7 +40,6 @@
device = "/dev/disk/by-partlabel/disk-main-ESP";
fsType = "vfat";
options = [
# maybe 700?
"fmask=0022"
"dmask=0022"
];