This commit is contained in:
2025-09-16 17:15:45 +03:00
parent 3690b55241
commit f2468577a2
2 changed files with 29 additions and 29 deletions
@@ -58,11 +58,11 @@
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/5938c796-6ff5-49d9-a3a6-022b4c32beeb";
device = "/dev/disk/by-partlabel/disk-main-root";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/61BF-3342";
device = "/dev/disk/by-partlabel/disk-main-ESP";
fsType = "vfat";
options = [
"fmask=0077"
@@ -72,7 +72,7 @@
};
swapDevices = [
{ device = "/dev/disk/by-uuid/d89bccd2-0672-4855-9d87-40e2688cdec4"; }
{ device = "/dev/disk/by-partlabel/disk-main-swap"; }
];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
+26 -26
View File
@@ -29,32 +29,32 @@ let
age.keyFile = "/var/lib/sops-nix/key.txt";
};
fileSystems = {
"${xlib.dirs.therima-drive}" = {
device = "/dev/disk/by-uuid/C0A2DDEFA2DDEA44";
fsType = "ntfs3";
options = [
"defaults"
"uid=1000"
"gid=1000"
"fmask=0007"
"dmask=0007"
"nofail"
];
};
"${xlib.dirs.vetymae-drive}" = {
device = "/dev/disk/by-uuid/38D63C6ED63C2E8E";
fsType = "ntfs3";
options = [
"defaults"
"uid=1000"
"gid=1000"
"fmask=0007"
"dmask=0007"
"nofail"
];
};
};
# fileSystems = {
# "${xlib.dirs.therima-drive}" = {
# device = "/dev/disk/by-uuid/C0A2DDEFA2DDEA44";
# fsType = "ntfs3";
# options = [
# "defaults"
# "uid=1000"
# "gid=1000"
# "fmask=0007"
# "dmask=0007"
# "nofail"
# ];
# };
# "${xlib.dirs.vetymae-drive}" = {
# device = "/dev/disk/by-uuid/38D63C6ED63C2E8E";
# fsType = "ntfs3";
# options = [
# "defaults"
# "uid=1000"
# "gid=1000"
# "fmask=0007"
# "dmask=0007"
# "nofail"
# ];
# };
# };
boot = {
kernelPackages = lib.mkDefault pkgs.linuxPackages_xanmod_latest;