mirror of
https://github.com/oqyude/nixos.git
synced 2026-06-15 22:41:52 +03:00
123
This commit is contained in:
@@ -29,32 +29,44 @@ let
|
|||||||
age.keyFile = "/var/lib/sops-nix/key.txt";
|
age.keyFile = "/var/lib/sops-nix/key.txt";
|
||||||
};
|
};
|
||||||
|
|
||||||
# fileSystems = {
|
fileSystems = {
|
||||||
# "${xlib.dirs.therima-drive}" = {
|
"${xlib.dirs.therima-drive}" = {
|
||||||
# device = "/dev/disk/by-uuid/C0A2DDEFA2DDEA44";
|
device = "/dev/disk/by-uuid/C0A2DDEFA2DDEA44";
|
||||||
# fsType = "ntfs3";
|
fsType = "ntfs3";
|
||||||
# options = [
|
options = [
|
||||||
# "defaults"
|
"defaults"
|
||||||
# "uid=1000"
|
"uid=1000"
|
||||||
# "gid=1000"
|
"gid=1000"
|
||||||
# "fmask=0007"
|
"fmask=0007"
|
||||||
# "dmask=0007"
|
"dmask=0007"
|
||||||
# "nofail"
|
"nofail"
|
||||||
# ];
|
];
|
||||||
# };
|
};
|
||||||
# "${xlib.dirs.vetymae-drive}" = {
|
"${xlib.dirs.vetymae-drive}" = {
|
||||||
# device = "/dev/disk/by-uuid/38D63C6ED63C2E8E";
|
device = "/dev/disk/by-uuid/6408433908430A0E";
|
||||||
# fsType = "ntfs3";
|
fsType = "ntfs3";
|
||||||
# options = [
|
options = [
|
||||||
# "defaults"
|
"defaults"
|
||||||
# "uid=1000"
|
"uid=1000"
|
||||||
# "gid=1000"
|
"gid=1000"
|
||||||
# "fmask=0007"
|
"fmask=0007"
|
||||||
# "dmask=0007"
|
"dmask=0007"
|
||||||
# "nofail"
|
"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 = {
|
boot = {
|
||||||
kernelPackages = lib.mkDefault pkgs.linuxPackages_xanmod_latest;
|
kernelPackages = lib.mkDefault pkgs.linuxPackages_xanmod_latest;
|
||||||
|
|||||||
@@ -55,6 +55,11 @@
|
|||||||
default = "/mnt/vetymae";
|
default = "/mnt/vetymae";
|
||||||
description = "Vetymae drive mount point.";
|
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 {
|
wsl-home = lib.mkOption {
|
||||||
type = lib.types.str;
|
type = lib.types.str;
|
||||||
default = "/mnt/c/Users/${config.xlib.device.username}";
|
default = "/mnt/c/Users/${config.xlib.device.username}";
|
||||||
|
|||||||
Reference in New Issue
Block a user