tangled
alpha
login
or
join now
da157.id
/
nix-config
0
fork
atom
0xda157's home-manager and nixos config
0
fork
atom
overview
issues
pulls
pipelines
fix signing url pattern 2?
0xda157
2 months ago
615a3c5d
8314d746
0/1
check.yml
failed
30s
+2
-5
1 changed file
expand all
collapse all
unified
split
modules
users
da157
cli
git
default.nix
+2
-5
modules/users/da157/cli/git/default.nix
···
1
1
{ lib, config, ... }:
2
2
-
let
3
3
-
inherit (config.sops) secrets;
4
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
13
-
condition = "hasconfig:remote.*.url:*github.com**";
10
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
20
-
condition = "hasconfig:remote.*.url:*codeberg.org**";
17
17
+
condition = "hasconfig:remote.*.url:**codeberg.org**";
21
18
contents = {
22
19
commit.gpgsign = true;
23
20
tag.gpgsign = true;