From 182ccc39c65b0b154dc831edb6bd8b5d6872a445 Mon Sep 17 00:00:00 2001 From: Adithya Nair Date: Fri, 2 Jun 2023 12:08:23 +0530 Subject: [PATCH] enable git-crypt on rico2 --- hosts/rico2/programs/default.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/hosts/rico2/programs/default.nix b/hosts/rico2/programs/default.nix index 9a74585..562a0f3 100644 --- a/hosts/rico2/programs/default.nix +++ b/hosts/rico2/programs/default.nix @@ -1,4 +1,4 @@ -{...}: { +{pkgs,...}: { imports = [ ./neovim.nix ./starship.nix @@ -6,4 +6,8 @@ ]; programs.git.enable = true; + + environment.systemPackages = with pkgs; [ + git-crypt + ]; }