Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 18 additions & 14 deletions hosts/hades/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -299,27 +299,31 @@

programs.git = {
enable = true;
userName = "UnstoppableMango";
userEmail = "erik.rasmussen@unmango.dev";

# From GitHub desktop:
# warning: error running /nix/store/6jjz4n9w3y9c5d55n86s0sa6cfa5dkg6-github-desktop-3.4.13/opt/resources/app/git/libexec/git-core/git 'config' '--includes' '--global' '--replace-all' 'filter.lfs.process' 'git-lfs filter-process': 'error: could not lock config file /home/erik/.config/git/config: Read-only file system' 'exit status 255'. Run `git lfs install --force` to reset Git configuration.
settings.user = {
name = "UnstoppableMango";
email = "erik.rasmussen@unmango.dev";
push.autoSetupRemote = true;
};
signing = {
format = "openpgp";
key = "264283BBFDC491BC";
signByDefault = true;
};
# Still fiddling with these
# https://github.com/git/git/blob/master/contrib/diff-highlight/README
diff-highlight.enable = true;
# https://github.com/so-fancy/diff-so-fancy
# diff-so-fancy.enable = true;
# https://github.com/Wilfred/difftastic
# difftastic.enable = true;
};

# From GitHub desktop:
# warning: error running /nix/store/6jjz4n9w3y9c5d55n86s0sa6cfa5dkg6-github-desktop-3.4.13/opt/resources/app/git/libexec/git-core/git 'config' '--includes' '--global' '--replace-all' 'filter.lfs.process' 'git-lfs filter-process': 'error: could not lock config file /home/erik/.config/git/config: Read-only file system' 'exit status 255'. Run `git lfs install --force` to reset Git configuration.
extraConfig = {
push.autoSetupRemote = true;
};
# Still fiddling with these
# https://github.com/git/git/blob/master/contrib/diff-highlight/README
programs.diff-highlight = {
enable = true;
enableGitIntegration = true;
};
# https://github.com/so-fancy/diff-so-fancy
# programs.diff-so-fancy.enable = true;
# https://github.com/Wilfred/difftastic
# programs.difftastic.enable = true;

programs.micro.enable = true;
programs.helix.enable = true;
Expand Down