nix-infra/common/home_manager/common.nix

201 lines
5.9 KiB
Nix
Raw Normal View History

2023-03-07 19:24:57 +00:00
{ pkgs, config, lib, ... }: {
imports = [ ../../common/home_manager/helix.nix ];
home-manager.useGlobalPkgs = true;
home-manager.users.agatha = {
home.username = "agatha";
home.homeDirectory = "/home/agatha";
home.stateVersion = config.system.stateVersion;
home.packages = with pkgs; [
bat
btop
2023-03-06 19:37:55 +00:00
choose
2023-12-17 20:08:04 +00:00
eza
fd
fzf
gnupg
ouch
ripgrep
];
programs = {
home-manager.enable = true;
git = {
enable = true;
userName = "Agatha V. Lovelace";
userEmail = "agatha@technogothic.net";
signing.key = "33185E0D62AD7294379947D4C37ABADDB597BCA1";
signing.signByDefault = true;
aliases = {
plog =
"log --graph --pretty=format:'%h -%d %s -%an %n' --abbrev-commit --date=relative --branches";
pfusch = "push --force-with-lease";
stat = "diff --compact-summary";
2023-03-06 19:37:55 +00:00
undo = "reset --soft HEAD~";
2023-05-21 10:23:14 +00:00
unstage = "restore --staged";
};
2023-02-22 20:27:12 +00:00
extraConfig = {
init = { defaultBranch = "mistress"; };
core = { editor = "hx"; };
2024-01-30 22:17:16 +00:00
merge.conflictStyle = "zdiff3";
2023-03-10 22:23:43 +00:00
rebase.autosquash = true;
pull.rebase = true;
2023-02-22 20:27:12 +00:00
};
2023-11-09 19:08:08 +00:00
delta = {
enable = true;
options = {
blame-format = "{timestamp:<15} {author:<18.18} {commit:<8}";
file-modified-label = "modified:";
hunk-header-decoration-style = "blue ul ol";
line-numbers = true;
navigate = true;
navigate-regex = "^(commit|added:|removed:|renamed:|modified:)";
};
};
};
starship = {
enable = true;
settings = {
add_newline = false;
format = lib.concatStrings [
"[$hostname](bold red)"
"$character"
"$directory"
];
right_format =
lib.concatStrings [ "$git_branch" " " "$cmd_duration" ];
character = {
success_symbol = "";
error_symbol = "[ ](purple)";
};
directory = {
truncation_length = 2;
fish_style_pwd_dir_length = 1;
read_only = " ";
style = "cyan";
read_only_style = "cyan";
};
cmd_duration = { min_time = 10000; };
git_branch = {
format = "$symbol $branch";
2024-05-22 00:08:36 +00:00
symbol = "󰘬";
};
hostname = {
ssh_only = false;
format = "$hostname";
};
};
};
fish = {
enable = true;
plugins = [
{
name = "fzf";
src = pkgs.fetchFromGitHub {
owner = "jethrokuan";
repo = "fzf";
rev = "479fa67d7439b23095e01b64987ae79a91a4e283";
sha256 = "0k6l21j192hrhy95092dm8029p52aakvzis7jiw48wnbckyidi6v";
};
}
{
name = "pisces";
src = pkgs.fetchFromGitHub {
owner = "laughedelic";
repo = "pisces";
rev = "e45e0869855d089ba1e628b6248434b2dfa709c4";
sha256 = "073wb83qcn0hfkywjcly64k6pf0d7z5nxxwls5sa80jdwchvd2rs";
};
}
];
2023-12-17 20:08:04 +00:00
shellAliases = {
ls = "eza -lhT --classify=always --group-directories-first --level 1";
2023-12-17 20:08:04 +00:00
cat = "bat";
ip = "ip -color=always";
youtube-dl-audio = ''
yt-dlp --ignore-errors --output "%(title)s.%(ext)s" --extract-audio --audio-format best'';
rsync = "rsync -az --partial --info=progress2";
};
2023-07-28 19:28:23 +00:00
functions = {
expand-dot-to-parent-directory-path = ''
# expand ... to ../.. etc
# https://github.com/fish-shell/fish-shell/issues/1891#issuecomment-451961517
# Get commandline up to cursor
set -l cmd (commandline --cut-at-cursor)
# Match last line
switch $cmd[-1]
case '*..'
commandline --insert '/.'
case '*'
commandline --insert '.'
end
'';
impostor = ''
echo $argv[1] | string sub -s 13 | fold -w1 | shuf | tr -d '\n' | sed 's/^/cccccbeujtje/'
'';
};
shellInit = ''
set -Ux AWT_TOOLKIT MToolkit
set -Ux JDK_JAVA_OPTIONS "-Dswing.defaultlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel -Dswing.crossplatformlaf=com.sun.java.swing.plaf.gtk.GTKLookAndFeel -Djdk.gtk.version=3 -Dawt.useSystemAAFontSettings=on -Dswing.aatext=true"
# Zoxide
set -Ux _ZO_FZF_OPTS "--no-sort --height=30% --exit-0 --select-1 --bind=ctrl-z:ignore"
# Fix locale errors in Nix
set -Ux LOCALE_ARCHIVE /usr/lib/locale/locale-archive
# PATH
set -gx fish_user_paths $fish_user_paths \
/home/agatha/.local/bin \
/home/agatha/.cargo/bin \
/home/agatha/.cabal/bin
if type -q ruby
fish_add_path -a (ruby -e 'print Gem.user_dir')/bin
end
bind . 'expand-dot-to-parent-directory-path'
if test -d ~/.gnupg
set -e SSH_AGENT_PID
set -x SSH_AUTH_SOCK (gpgconf --list-dirs agent-ssh-socket)
# so gpg-agent knows in what tty to prompt for key passwords
set -x GPG_TTY (tty)
gpg-connect-agent updatestartuptty /bye > /dev/null
end
'';
2023-12-17 20:08:04 +00:00
};
2023-07-28 19:28:23 +00:00
2023-12-17 20:08:04 +00:00
tealdeer = {
enable = true;
settings = { updates.auto_update = true; };
};
zoxide = {
enable = true;
enableFishIntegration = true;
options = [ "--cmd v" ];
};
2023-03-06 19:37:55 +00:00
command-not-found.enable = false;
nix-index = {
enable = true;
enableFishIntegration = true;
};
};
2024-02-26 18:09:33 +00:00
home.file.".sqliterc".text = ''
.headers on
.mode column
'';
};
}