This commit is contained in:
2025-08-08 22:33:10 +03:00
parent 310f41d9eb
commit 90e9707d27
17 changed files with 69 additions and 56 deletions
+6 -6
View File
@@ -29,7 +29,7 @@ let
};
fileSystems = {
"${config.xlib.dirs.therima-drive}" = {
"${xlib.dirs.therima-drive}" = {
device = "/dev/disk/by-uuid/C0A2DDEFA2DDEA44";
fsType = "ntfs3";
options = [
@@ -41,7 +41,7 @@ let
"nofail"
];
};
"${config.xlib.dirs.vetymae-drive}" = {
"${xlib.dirs.vetymae-drive}" = {
device = "/dev/disk/by-uuid/38D63C6ED63C2E8E";
fsType = "ntfs3";
options = [
@@ -74,7 +74,7 @@ let
# networking.firewall.allowedTCPPorts = [ ... ];
# networking.firewall.allowedUDPPorts = [ ... ];
networking = {
hostName = "${config.xlib.device.hostname}";
hostName = "${xlib.device.hostname}";
networkmanager.enable = true;
firewall.enable = false;
};
@@ -104,10 +104,10 @@ let
syncthing = {
enable = true;
systemService = true;
configDir = "${config.xlib.dirs.user-storage}/Syncthing/${config.system.name}";
dataDir = "${config.xlib.dirs.user-home}";
configDir = "${xlib.dirs.user-storage}/Syncthing/${config.system.name}";
dataDir = "${xlib.dirs.user-home}";
group = "users";
user = "${config.xlib.device.username}";
user = "${xlib.device.username}";
};
pipewire = {
enable = lib.mkDefault true;