obliterate home-manager, rename some elements

This commit is contained in:
atagen 2025-08-13 20:27:25 +10:00
parent 5575604452
commit 0eb2b9e796
48 changed files with 1279 additions and 1311 deletions

View file

@ -1,27 +1,41 @@
{
pkgs,
localPkgs,
scope,
...
}:
{
scope "user" {
home.packages = [
pkgs.direnv
packages = [
localPkgs.rbw-helper
];
hm.programs.direnv = {
programs.direnv = {
enable = true;
nix-direnv = {
enable = true;
};
enableFishIntegration = true;
integrations.fish.enable = true;
};
hm.programs.git = {
programs.git = {
enable = true;
userName = "atagen";
userEmail = "boss@atagen.co";
settings = {
user = {
name = "atagen";
email = "boss@atagen.co";
};
merge = {
conflictstyle = "diff3";
};
init = {
defaultBranch = "main";
};
url = {
"https://github.com/".insteadOf = "github:";
"https://git.atagen.co/".insteadOf = "atagen:";
};
credential.helper = "rbw";
};
integrations = {
difftastic.enable = true;
};
};
}