summaryrefslogtreecommitdiff
path: root/hosts
diff options
context:
space:
mode:
authoradikro <adikro@disroot.org>2026-05-23 21:32:00 +0200
committeradikro <adikro@disroot.org>2026-05-23 21:32:00 +0200
commitc7abbc56562f9745d9d1bb29f3c0d4874425e92c (patch)
tree2e652540993b69b0d33260902b85ea1c2207d3f6 /hosts
parentc6b6a3e6c702834eac2b633db2ed4c397b4ae113 (diff)
updates
Diffstat (limited to 'hosts')
-rw-r--r--hosts/desktop/configuration.nix22
-rw-r--r--hosts/desktop/home.nix2
-rw-r--r--hosts/thinkpad/configuration.nix1
-rw-r--r--hosts/thinkpad/home.nix1
4 files changed, 21 insertions, 5 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;
diff --git a/hosts/desktop/home.nix b/hosts/desktop/home.nix
index 5a4f373..cdce283 100644
--- a/hosts/desktop/home.nix
+++ b/hosts/desktop/home.nix
@@ -94,6 +94,8 @@
};
home.packages = with pkgs; [
+ cosmic-files
+ feishin
tmux
gimp
stow
diff --git a/hosts/thinkpad/configuration.nix b/hosts/thinkpad/configuration.nix
index 0fe2945..9f27ac0 100644
--- a/hosts/thinkpad/configuration.nix
+++ b/hosts/thinkpad/configuration.nix
@@ -79,7 +79,6 @@
monero.wallet.enable = true;
sops.enable = true;
syncthing.enable = true;
- vpn.enable = true;
};
wm = {
enable = true;
diff --git a/hosts/thinkpad/home.nix b/hosts/thinkpad/home.nix
index 8676adc..9b6dd95 100644
--- a/hosts/thinkpad/home.nix
+++ b/hosts/thinkpad/home.nix
@@ -64,6 +64,5 @@
home.packages = with pkgs; [
stow
gimp
- telegram-desktop
];
}