Compare commits

...

2 commits

3 changed files with 8 additions and 2 deletions

View file

@ -165,8 +165,8 @@ in {
services.gpg-agent = {
enable = true;
enableSshSupport = true;
defaultCacheTtl = 300;
defaultCacheTtlSsh = 300;
defaultCacheTtl = 7200;
defaultCacheTtlSsh = 7200;
};
home.file.".local" = {

View file

@ -12,6 +12,7 @@
./services/picom
./services/screen-locker
./services/blueman-applet
./services/network-manager
./services/syncthing
./services/git-sync
];

View file

@ -0,0 +1,5 @@
{ config, lib, pkgs, ... }:
{
config.services.network-manager-applet = { enable = true; };
}