mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-10 20:20:41 +03:00
123
This commit is contained in:
@@ -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;
|
||||
|
||||
@@ -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}";
|
||||
|
||||
Reference in New Issue
Block a user