diff options
| author | adikro <adikro@disroot.org> | 2026-05-26 16:20:08 +0200 |
|---|---|---|
| committer | adikro <adikro@disroot.org> | 2026-05-26 16:20:08 +0200 |
| commit | b02651ac4683d6f116f912d79a7b158c127e4ea2 (patch) | |
| tree | dd5b0ffe28b2a38d455525f0cdf74b9a67c72993 /hosts/thinkpad | |
| parent | c7abbc56562f9745d9d1bb29f3c0d4874425e92c (diff) | |
update
Diffstat (limited to 'hosts/thinkpad')
| -rw-r--r-- | hosts/thinkpad/configuration.nix | 19 | ||||
| -rw-r--r-- | hosts/thinkpad/home.nix | 28 |
2 files changed, 45 insertions, 2 deletions
diff --git a/hosts/thinkpad/configuration.nix b/hosts/thinkpad/configuration.nix index 9f27ac0..fd8e727 100644 --- a/hosts/thinkpad/configuration.nix +++ b/hosts/thinkpad/configuration.nix @@ -51,7 +51,13 @@ srv = { bluetooth.enable = true; tailscale.enable = true; - ssh.enable = true; + ssh = { + client = { + enable = true; + createAliases = true; + }; + enableSigning = true; + }; firewall.enable = true; omnisearch.enable = true; i2p.enable = true; @@ -78,7 +84,16 @@ 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" + ]; + }; }; wm = { enable = true; diff --git a/hosts/thinkpad/home.nix b/hosts/thinkpad/home.nix index 9b6dd95..26cb32e 100644 --- a/hosts/thinkpad/home.nix +++ b/hosts/thinkpad/home.nix @@ -61,8 +61,36 @@ }; }; + programs.niri.settings.outputs = { + "DP-1" = { + focus-at-startup = true; + variable-refresh-rate = "on-demand"; + position = { + x = 0; + y = 0; + }; + mode = { + width = 2560; + height = 1440; + }; + }; + "DP-2" = { + variable-refresh-rate = "on-demand"; + position = { + x = 2560; + y = 360; + }; + mode = { + width = 1920; + height = 1080; + }; + }; + }; + home.packages = with pkgs; [ stow + feishin + tmux gimp ]; } |
