This commit is contained in:
2025-09-16 18:13:31 +03:00
parent 24efd8d052
commit 3604718849
2 changed files with 43 additions and 26 deletions
+38 -26
View File
@@ -29,32 +29,44 @@ 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/6408433908430A0E";
fsType = "ntfs3";
options = [
"defaults"
"uid=1000"
"gid=1000"
"fmask=0007"
"dmask=0007"
"nofail"
];
};
"${xlib.dirs.soptur-drive}" = {
device = "/dev/disk/by-uuid/C00C56E40C56D54E";
fsType = "ntfs3";
options = [
"defaults"
"uid=1000"
"gid=1000"
"fmask=0007"
"dmask=0007"
"nofail"
];
};
};
boot = {
kernelPackages = lib.mkDefault pkgs.linuxPackages_xanmod_latest;
+5
View File
@@ -55,6 +55,11 @@
default = "/mnt/vetymae";
description = "Vetymae drive mount point.";
};
soptur-drive = lib.mkOption {
type = lib.types.str;
default = "/mnt/soptur";
description = "Soptur drive mount point.";
};
wsl-home = lib.mkOption {
type = lib.types.str;
default = "/mnt/c/Users/${config.xlib.device.username}";