From f2d5672577798d093aaf86ce9afd9d1ae7967b66 Mon Sep 17 00:00:00 2001 From: Leonhard Kost Date: Tue, 10 Feb 2026 15:03:50 +0100 Subject: [PATCH] feat: add git-crypt --- .gitattributes | 1 + modules/home-manager/git.nix | 1 + 2 files changed, 2 insertions(+) create mode 100644 .gitattributes diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..195a277 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +*.secret filter=git-crypt diff=git-crypt diff --git a/modules/home-manager/git.nix b/modules/home-manager/git.nix index 0719b47..3cf716f 100644 --- a/modules/home-manager/git.nix +++ b/modules/home-manager/git.nix @@ -7,6 +7,7 @@ { home.packages = with pkgs; [ git-credential-oauth + git-crypt ]; programs.git = {