alyssum/home.syncthing: init
Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run

This commit is contained in:
Cilly Leang 2026-06-17 19:49:10 +10:00
parent 024a6bdbe2
commit 8157d0d561
Signed by: cilly
GPG key ID: 6500251E087653C9
2 changed files with 17 additions and 0 deletions

View file

@ -32,6 +32,7 @@
./filesystem.nix
./kernel.nix
./networking.nix
./home.syncthing.nix
./samba.nix
../../users/hana

View file

@ -0,0 +1,16 @@
{ config, ... }: {
me.binds."/home/kujira/.config/syncthing" = "kujira/syncthing/config";
me.binds."/home/kujira/.local/state/syncthing" = "kujira/syncthing/state";
users.users.kujira = {
hashedPasswordFile = config.age.secrets.passwd.path;
isNormalUser = true;
linger = true;
};
home-manager.users.kujira = { ... }: {
services.syncthing = {
enable = true;
guiAddress = ":8385";
};
};
}