2026-06-17 19:49:10 +10:00
|
|
|
{ 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 = { ... }: {
|
2026-06-17 19:50:02 +10:00
|
|
|
home = {
|
|
|
|
|
username = "kujira";
|
|
|
|
|
homeDirectory = "/home/kujira";
|
|
|
|
|
stateVersion = "26.05";
|
|
|
|
|
};
|
2026-06-17 19:49:10 +10:00
|
|
|
services.syncthing = {
|
|
|
|
|
enable = true;
|
|
|
|
|
guiAddress = ":8385";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
}
|