diff options
Diffstat (limited to 'home/profiles/git.nix')
-rw-r--r-- | home/profiles/git.nix | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/home/profiles/git.nix b/home/profiles/git.nix index cf90da6..6846a08 100644 --- a/home/profiles/git.nix +++ b/home/profiles/git.nix @@ -1,7 +1,7 @@ -{ self, lib, pkgs, config, ... }: +{ lib, pkgs, config, ... }: let sshPub = builtins.fromTOML ( - builtins.readFile "${self}/configs/ssh-pubkeys.toml" + builtins.readFile ../../configs/ssh-pubkeys.toml ); in { @@ -14,7 +14,7 @@ in signing = { key = "key::${sshPub.ykey-laptop}"; - signByDefault = true; + signByDefault = false; }; extraConfig = { @@ -68,7 +68,6 @@ in ''; home.packages = with pkgs; [ - tools.git-blame-stats gitAndTools.pre-commit ]; } |