Some checks are pending
CI / Build linux-lava for x86_64-linux (push) Waiting to run
16 lines
432 B
Nix
16 lines
432 B
Nix
{ 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";
|
|
};
|
|
};
|
|
}
|