diff options
Diffstat (limited to 'hosts/desktop/configuration.nix')
| -rw-r--r-- | hosts/desktop/configuration.nix | 22 |
1 files changed, 19 insertions, 3 deletions
diff --git a/hosts/desktop/configuration.nix b/hosts/desktop/configuration.nix index 0f0f63e..adfb5a3 100644 --- a/hosts/desktop/configuration.nix +++ b/hosts/desktop/configuration.nix @@ -54,7 +54,14 @@ srv = { bluetooth.enable = true; tailscale.enable = true; - ssh.enable = true; + ssh = { + server.enable = true; + client = { + enable = true; + createAliases = true; + }; + enableSigning = true; + }; firewall.enable = true; yggdrasil.enable = true; i2p.enable = true; @@ -81,9 +88,18 @@ nix-helper.enable = true; monero.wallet.enable = true; sops.enable = true; - syncthing.enable = true; + syncthing = { + enable = true; + activeFolders = [ + "openmw-config" + "openmw-mods" + "game-saves" + "keepass" + "sync" + "music" + ]; + }; omnisearch.enable = true; - vpn.enable = true; }; wm = { enable = true; |
