summaryrefslogtreecommitdiff
path: root/nixos
diff options
context:
space:
mode:
Diffstat (limited to 'nixos')
-rw-r--r--nixos/common.nix8
-rw-r--r--nixos/lindy.nix6
2 files changed, 6 insertions, 8 deletions
diff --git a/nixos/common.nix b/nixos/common.nix
index e7d3581..87ae74c 100644
--- a/nixos/common.nix
+++ b/nixos/common.nix
@@ -160,14 +160,6 @@ in
programs.mtr.enable = true;
- # redundant with home-manager config
- # programs.gnupg.agent = {
- # enable = true;
- # enableSSHSupport = false;
- # };
-
- # List services that you want to enable:
-
# Enable the OpenSSH daemon.
# services.openssh.enable = true;
diff --git a/nixos/lindy.nix b/nixos/lindy.nix
index eb55cf2..2c07527 100644
--- a/nixos/lindy.nix
+++ b/nixos/lindy.nix
@@ -88,6 +88,12 @@ Kogami UUID=61534c91-df18-4c71-9244-54e677f5d4fa /root/kogami_key
virtualisation.virtualbox.host.enable = true;
users.users.lx.extraGroups = [ "docker" "vboxusers" ];
+ # GnuPG agent at system level, if at home level conflicts with arch
+ programs.gnupg.agent = {
+ enable = true;
+ enableSSHSupport = false;
+ };
+
environment.systemPackages = with pkgs; [ zfs docker-compose ];
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";