diff --git a/nixos-configurations/shared-desktop.nix b/nixos-configurations/shared-desktop.nix index d7d0814..6b9b4fa 100644 --- a/nixos-configurations/shared-desktop.nix +++ b/nixos-configurations/shared-desktop.nix @@ -25,6 +25,19 @@ dedicatedServer.openFirewall = true; }; dconf.enable = true; + gnupg.agent = { + enable = true; + enableSSHSupport = true; + pinentryFlavor = "gnome3"; + }; + git = { + enable = true; + userName = "thiloho"; + userEmail = "123883702+thiloho@users.noreply.github.com"; + signing = { + signByDefault = true; + }; + }; }; hardware = { diff --git a/nixos-configurations/shared.nix b/nixos-configurations/shared.nix index 08b60d9..dd2bbbd 100644 --- a/nixos-configurations/shared.nix +++ b/nixos-configurations/shared.nix @@ -24,22 +24,8 @@ extraGroups = [ "wheel" "networkmanager" "docker" ]; }; - programs.gnupg.agent = { - enable = true; - enableSSHSupport = true; - pinentryFlavor = "gnome3"; - }; - home-manager.users.thiloho = { ... }: { programs = { - git = { - enable = true; - userName = "thiloho"; - userEmail = "123883702+thiloho@users.noreply.github.com"; - signing = { - signByDefault = true; - }; - }; helix = { enable = true; defaultEditor = true;