Partition manager in KDE and SSH agent

This commit is contained in:
Bart van der Braak 2024-10-19 15:30:49 +02:00
parent d67f6097c1
commit d063f97a53
2 changed files with 11 additions and 1 deletions

View file

@ -24,9 +24,10 @@
# Enable security-related service for realtime audio tasks # Enable security-related service for realtime audio tasks
security.rtkit.enable = true; security.rtkit.enable = true;
# Steam, Tailscale, and other services # Steam, Tailscale, and other programs/services
programs.steam.enable = true; programs.steam.enable = true;
services.tailscale.enable = true; services.tailscale.enable = true;
programs.partition-manager.enable = true;
# Environment variables # Environment variables
environment.variables = { environment.variables = {

View file

@ -31,4 +31,13 @@
# Workaround for electron dependency in Logseq # Workaround for electron dependency in Logseq
"electron-27.3.11" "electron-27.3.11"
]; ];
# SSH agent configurations
programs.ssh.startAgent = true;
programs.ssh.extraConfig = ''
Host *
AddKeysToAgent yes
ServerAliveInterval 60
ServerAliveCountMax 3
'';
} }