mirror of
https://github.com/bartvdbraak/dotfiles.git
synced 2025-04-27 14:41:20 +00:00
Partition manager in KDE and SSH agent
This commit is contained in:
parent
d67f6097c1
commit
d063f97a53
2 changed files with 11 additions and 1 deletions
|
@ -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 = {
|
||||||
|
|
|
@ -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
|
||||||
|
'';
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue