1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
blueplum f5b6f8287c chore: re-add git signing key 2026-03-15 15:43:57 +01:00
blueplum 92b8bbe248 patch: fix nix shell unnecessary prompt ')' 2026-03-15 15:31:04 +01:00
3 changed files with 10 additions and 14 deletions
+7
View File
@@ -101,4 +101,11 @@ in
ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="056a", TAG+="systemd", ENV{SYSTEMD_USER_WANTS}+="wacom.service" ACTION=="add", SUBSYSTEM=="usb", ATTRS{idVendor}=="056a", TAG+="systemd", ENV{SYSTEMD_USER_WANTS}+="wacom.service"
''; '';
}; };
homeManager = {
programs.git.signing = {
signByDefault = true;
key = "60649DFDEAACD73D";
};
};
} }
+2 -13
View File
@@ -96,15 +96,6 @@ in
programs.git = { programs.git = {
enable = true; enable = true;
# signing =
# if (env.git or { }) ? signingKey then
# {
# key = env.git.signingKey;
# signByDefault = true;
# }
# else
# { signByDefault = false; };
settings = { settings = {
user.name = "Anton"; user.name = "Anton";
user.email = "aligator.h0spital.e@gmail.com"; user.email = "aligator.h0spital.e@gmail.com";
@@ -128,10 +119,10 @@ in
}; };
"url \"ssh://git@github.com/\"".insteadOf = "gh:"; "url \"ssh://git@github.com/\"".insteadOf = "gh:";
"url \"ssh://git@github.com/antonw51\"".insteadOf = "gh:me"; "url \"ssh://git@github.com/antonw51\"".insteadOf = "gh/me:";
"url \"ssh://git@ip.louiscreates.com/\"".insteadOf = "tea:"; "url \"ssh://git@ip.louiscreates.com/\"".insteadOf = "tea:";
"url \"ssh://git@ip.louiscreates.com/antonw51\"".insteadOf = "tea:me"; "url \"ssh://git@ip.louiscreates.com/antonw51\"".insteadOf = "tea/me:";
alias.ref = "show -s --pretty = reference"; alias.ref = "show -s --pretty = reference";
}; };
@@ -197,8 +188,6 @@ in
}; };
}; };
# programs.vesktop = pkgs.callPackage { };
services.gpg-agent = { services.gpg-agent = {
enable = true; enable = true;
enableSshSupport = true; enableSshSupport = true;
+1 -1
View File
@@ -49,7 +49,7 @@ function fish_prompt
set -ql packages[4]; and set nix_shell "$nix_shell, +$(math (count $packages) - 2) more" set -ql packages[4]; and set nix_shell "$nix_shell, +$(math (count $packages) - 2) more"
set -ql packages[1]; set nix_shell "$nix_shell) " set -ql packages[1]; and set nix_shell "$nix_shell) "
end end
end end