Update Desktop Config

This commit is contained in:
2025-07-16 17:48:36 +02:00
parent 4b5127add1
commit 7ca1e956e1
6 changed files with 345 additions and 234 deletions
+30
View File
@@ -0,0 +1,30 @@
{ pkgs, ... }:
{
services = {
emacs = {
enable = true;
package = pkgs.emacs-gtk;
client = {
enable = true;
arguments = [
"-c"
"-a emacs"
];
};
startWithUserSession = "graphical";
};
gpg-agent = {
enable = true;
defaultCacheTtl = 1800;
enableSshSupport = true;
};
gnome-keyring.enable = true;
mpris-proxy.enable = true;
network-manager-applet.enable = true;
nextcloud-client.enable = true;
swww.enable = true;
};
}