This commit is contained in:
2025-12-23 15:41:08 +00:00
parent 203a3f9b71
commit 959305c93c
5 changed files with 257 additions and 227 deletions

View File

@@ -7,8 +7,9 @@
in {
sops.age.keyFile = "/Users/${user}/.config/sops/age/keys.txt";
sops.secrets = secrets.mkSyncthingSecrets {
inherit hostname user;
isDarwin = true;
};
sops.secrets =
secrets.mkSyncthingSecrets {
inherit hostname user;
isDarwin = true;
};
}

View File

@@ -9,8 +9,9 @@ in {
sops.age.sshKeyPaths = [];
sops.gnupg.sshKeyPaths = [];
sops.secrets = secrets.mkSyncthingSecrets {
inherit hostname user;
isDarwin = true;
};
sops.secrets =
secrets.mkSyncthingSecrets {
inherit hostname user;
isDarwin = true;
};
}

View File

@@ -1,4 +1,8 @@
{config, hostname, ...}: {
{
config,
hostname,
...
}: {
networking = {
hostName = hostname;
useDHCP = false;