diff --git a/home/jonas@comfy-station.nix b/home/jonas@comfy-station.nix index 6c3577e..5a7b720 100644 --- a/home/jonas@comfy-station.nix +++ b/home/jonas@comfy-station.nix @@ -1,4 +1,8 @@ -{config, ...}: rec { +{ + config, + pkgs, + ... +}: { imports = [ (./. + "/jonas@comfy-station/" + /borg.nix) ]; @@ -9,7 +13,7 @@ home.homeDirectory = "/home/jonas"; sops = { - age.keyFile = "${home.homeDirectory}/.config/sops/age/keys.txt"; + age.keyFile = "${config.home.homeDirectory}/.config/sops/age/keys.txt"; }; # hive modules @@ -94,4 +98,17 @@ key = "4000EB35E1AE0F07"; }; }; + + programs.jujutsu = { + enable = true; + settings = { + user = { + name = config.programs.git.userName; + email = config.programs.git.userEmail; + }; + ui = { + diff-formatter = ["${pkgs.difftastic}/bin/difft" "--color=always" "$left" "$right"]; + }; + }; + }; }