nix/graphical/dev.nix
2026-03-09 13:58:20 +11:00

34 lines
648 B
Nix

{
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 ];
}