move all shared config out from darp8 -> graphical

This commit is contained in:
2025-11-12 17:12:55 +00:00
parent 2ff2b7f8bc
commit 96e7f06287
9 changed files with 473 additions and 442 deletions
+3 -26
View File
@@ -1,30 +1,7 @@
{ 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;
};
imports = [
../graphical/services.nix # import shared services
];
}