obliterate home-manager, rename some elements
This commit is contained in:
parent
5575604452
commit
56c1f4ba6a
48 changed files with 1277 additions and 1305 deletions
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue