0xda157's home-manager and nixos config

fix signing url pattern 2?

+2 -5
+2 -5
modules/users/da157/cli/git/default.nix
··· 1 1 { lib, config, ... }: 2 - let 3 - inherit (config.sops) secrets; 4 - in 5 2 { 6 3 programs.git = lib.mkIf config.l.secrets.enable { 7 4 signing = { ··· 10 7 }; 11 8 includes = [ 12 9 { 13 - condition = "hasconfig:remote.*.url:*github.com**"; 10 + condition = "hasconfig:remote.*.url:**github.com**"; 14 11 contents = { 15 12 commit.gpgsign = true; 16 13 tag.gpgsign = true; 17 14 }; 18 15 } 19 16 { 20 - condition = "hasconfig:remote.*.url:*codeberg.org**"; 17 + condition = "hasconfig:remote.*.url:**codeberg.org**"; 21 18 contents = { 22 19 commit.gpgsign = true; 23 20 tag.gpgsign = true;