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 = { fileSystems = {
"/" = { "/" = {
device = "/dev/disk/by-uuid/5938c796-6ff5-49d9-a3a6-022b4c32beeb"; device = "/dev/disk/by-partlabel/disk-main-root";
fsType = "ext4"; fsType = "ext4";
}; };
"/boot" = { "/boot" = {
device = "/dev/disk/by-uuid/61BF-3342"; device = "/dev/disk/by-partlabel/disk-main-ESP";
fsType = "vfat"; fsType = "vfat";
options = [ options = [
"fmask=0077" "fmask=0077"
@@ -72,7 +72,7 @@
}; };
swapDevices = [ 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 # 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"; 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/38D63C6ED63C2E8E";
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"
]; # ];
}; # };
}; # };
boot = { boot = {
kernelPackages = lib.mkDefault pkgs.linuxPackages_xanmod_latest; kernelPackages = lib.mkDefault pkgs.linuxPackages_xanmod_latest;