This commit is contained in:
2026-01-17 13:41:05 +03:00
parent 6c7e29c590
commit b06b6b2480
3 changed files with 90 additions and 11 deletions
+11 -11
View File
@@ -13,8 +13,8 @@ let
}:
{
xlib.device = {
type = "primary";
hostname = "lamet";
type = "secondary";
hostname = "rydiwo";
};
imports = with inputs; [
@@ -74,14 +74,14 @@ let
"nomodeset"
];
};
# syncthing = {
# enable = true;
# systemService = true;
# configDir = "${xlib.dirs.user-storage}/Syncthing/${config.system.name}";
# dataDir = "${xlib.dirs.user-home}";
# group = "users";
# user = "${xlib.device.username}";
# };
syncthing = {
enable = true;
systemService = true;
configDir = "${xlib.dirs.user-storage}/Syncthing/${config.system.name}";
dataDir = "${xlib.dirs.user-home}";
group = "users";
user = "${xlib.device.username}";
};
# pipewire = {
# enable = lib.mkDefault true;
# systemWide = true;
@@ -138,6 +138,6 @@ inputs.nixpkgs.lib.nixosSystem {
];
system = "x86_64-linux";
specialArgs = {
deviceType = "primary";
deviceType = "secondary";
};
}