diff options
author | Alex Auvolat <alex@adnab.me> | 2023-02-15 17:04:56 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2023-02-15 17:04:56 +0100 |
commit | f295a12222ceb81e76a130997d04f93177c0f9c3 (patch) | |
tree | 72eb8dbc034c5b5cb178a58051b60f3e6d868bcc /nixos | |
parent | 21038dd08fbbdc61305a51fd7328e6777b41a439 (diff) | |
download | user-config-f295a12222ceb81e76a130997d04f93177c0f9c3.tar.gz user-config-f295a12222ceb81e76a130997d04f93177c0f9c3.zip |
gpg different per machine
Diffstat (limited to 'nixos')
-rw-r--r-- | nixos/common.nix | 8 | ||||
-rw-r--r-- | nixos/lindy.nix | 6 |
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"; |