{ pkgs, ... }: scope "user" { programs = { direnv.enable = true; git = { enable = true; settings = { user = { name = "atagen"; email = "boss@atagen.co"; }; init = { defaultBranch = "main"; }; url = { "https://github.com/".insteadOf = "github:"; "https://git.lobotomise.me/atagen/".insteadOf = "atagen:"; "https://codeberg.org/".insteadOf = "codeberg:"; }; credential.helper = "rbw"; }; integrations = { difftastic.enable = true; }; }; }; packages = [ pkgs.jujutsu ]; }