Compare commits
No commits in common. "abe0027e5dc405174f7d8993db14e57cadda7b29" and "91abcbed1984e86981e95b395202e240ed13fbf7" have entirely different histories.
abe0027e5d
...
91abcbed19
3 changed files with 2 additions and 5 deletions
|
|
@ -1,4 +1,4 @@
|
|||
{ inputs, lib, modules, modulesPath, ... }: {
|
||||
{ inputs, modules, modulesPath, ... }: {
|
||||
networking.hostName = "alyssum";
|
||||
system.stateVersion = "25.11";
|
||||
time.timeZone = "Australia/Melbourne";
|
||||
|
|
@ -24,7 +24,6 @@
|
|||
tailscale
|
||||
|
||||
modules.services.nginx
|
||||
modules.services.syncthing
|
||||
|
||||
inputs.c-garnet.nixosModule
|
||||
|
||||
|
|
@ -36,5 +35,4 @@
|
|||
];
|
||||
|
||||
me.environment = "headless";
|
||||
services.syncthing.user = lib.mkForce "hana";
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{ config, ... }:
|
||||
let
|
||||
dir = "/persist/shared/.syncthing";
|
||||
uid = toString config.services.syncthing.user;
|
||||
uid = toString config.users.users.rin.uid;
|
||||
gid = toString config.users.groups.users.gid;
|
||||
in
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
{ config, ... }: {
|
||||
age.secrets.tailscale_auth.file = ../../secrets/tailscale_auth.age;
|
||||
me.binds."/var/lib/tailscale" = "tailscale";
|
||||
networking.firewall.trustedInterfaces = [ "tailscale0" ];
|
||||
services.tailscale = {
|
||||
enable = true;
|
||||
authKeyFile = config.age.secrets.tailscale_auth.path;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue