diff options
| author | Baitinq <[email protected]> | 2025-09-08 22:29:11 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2025-09-08 22:29:11 +0200 |
| commit | 1eb6870cfbc325e23442b42d44c4ed2f362f2bf3 (patch) | |
| tree | d60111431070e21b7cd0d14f6bf7543ab2be06b0 /hosts/home.nix | |
| parent | Hosts: Add jujutsu config (diff) | |
| download | nixos-config-1eb6870cfbc325e23442b42d44c4ed2f362f2bf3.tar.gz nixos-config-1eb6870cfbc325e23442b42d44c4ed2f362f2bf3.tar.bz2 nixos-config-1eb6870cfbc325e23442b42d44c4ed2f362f2bf3.zip | |
Hosts: Setup jujutsu with git-crypt support
Diffstat (limited to '')
| -rw-r--r-- | hosts/home.nix | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/hosts/home.nix b/hosts/home.nix index 6528beb..045d277 100644 --- a/hosts/home.nix +++ b/hosts/home.nix @@ -9,6 +9,7 @@ dotfiles, location, stateVersion, + system, ... }: { imports = [ @@ -183,6 +184,7 @@ jujutsu = { enable = true; + package = inputs.jj.packages."${system}".jujutsu; settings = { user = { name = "Baitinq"; @@ -193,6 +195,7 @@ backend = "gpg"; key = "18BE4F736F27FC190C1E1000BB3C0BC698650937"; }; + git.ignore-filters = ["git-crypt"]; }; }; |