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/lindy.nix | |
parent | 21038dd08fbbdc61305a51fd7328e6777b41a439 (diff) | |
download | user-config-f295a12222ceb81e76a130997d04f93177c0f9c3.tar.gz user-config-f295a12222ceb81e76a130997d04f93177c0f9c3.zip |
gpg different per machine
Diffstat (limited to 'nixos/lindy.nix')
-rw-r--r-- | nixos/lindy.nix | 6 |
1 files changed, 6 insertions, 0 deletions
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"; |