2023-06-22 17:00:39 +02:00
|
|
|
{ pkgs, ... }:
|
2023-06-11 15:51:26 +02:00
|
|
|
|
2023-06-22 16:42:23 +02:00
|
|
|
{
|
2023-05-18 15:49:56 +02:00
|
|
|
users.defaultUserShell = pkgs.fish;
|
2023-06-11 15:33:54 +02:00
|
|
|
environment.shells = [ pkgs.fish ];
|
2023-05-18 15:49:56 +02:00
|
|
|
|
2023-06-21 09:32:35 +02:00
|
|
|
environment.sessionVariables = {
|
|
|
|
GIT_DISCOVERY_ACROSS_FILESYSTEM = "1";
|
|
|
|
FZF_DEFAULT_OPTS = "--height 40% --reverse --border --color=16";
|
|
|
|
NODE_OPTIONS = "--max_old_space_size=16384";
|
2023-06-26 03:40:49 +02:00
|
|
|
BAT_THEME = "base16";
|
2023-06-21 09:32:35 +02:00
|
|
|
};
|
|
|
|
|
2023-06-12 22:59:59 +02:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
wget
|
|
|
|
jq
|
2023-06-13 00:40:05 +02:00
|
|
|
exa
|
2023-06-12 22:59:59 +02:00
|
|
|
fd
|
|
|
|
fzf
|
|
|
|
ripgrep
|
|
|
|
];
|
|
|
|
|
2023-05-18 15:49:56 +02:00
|
|
|
programs.fish = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
shellAliases = {
|
2023-06-12 22:59:59 +02:00
|
|
|
ls = "${pkgs.exa}/bin/exa --group-directories-first -I 'lost+found'";
|
2023-06-16 19:37:34 +02:00
|
|
|
tree = "${pkgs.exa}/bin/exa --group-directories-first --all --long --tree -I 'node_modules|.git|public|lost+found|target'";
|
2023-05-18 15:49:56 +02:00
|
|
|
mv = "mv -i";
|
2023-05-31 16:33:03 +02:00
|
|
|
cp = "cp -ia";
|
2023-06-12 22:59:59 +02:00
|
|
|
rg = "${pkgs.ripgrep}/bin/rg --max-columns=2000 --smart-case";
|
|
|
|
yarn = "${pkgs.yarn}/bin/yarn --emoji true";
|
2023-05-18 15:49:56 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
shellAbbrs = {
|
|
|
|
g = "git";
|
|
|
|
ga = "git add";
|
|
|
|
gaa = "git add --all";
|
|
|
|
gap = "git add --patch";
|
2023-07-18 13:19:49 +02:00
|
|
|
gb = "git branch";
|
2023-06-20 18:04:28 +02:00
|
|
|
gbd = "git branch --delete";
|
2023-05-18 15:49:56 +02:00
|
|
|
gc = "git commit -m";
|
|
|
|
gca = "git commit --amend";
|
|
|
|
gcl = "git clone";
|
|
|
|
gco = "git checkout";
|
2023-07-11 14:02:02 +02:00
|
|
|
gcot = "git checkout --theirs";
|
2023-07-11 14:02:34 +02:00
|
|
|
gcp = "git cherry-pick";
|
2023-07-18 13:19:49 +02:00
|
|
|
gd = "git diff";
|
|
|
|
gds = "git diff --staged";
|
2023-05-18 15:49:56 +02:00
|
|
|
gi = "git init";
|
|
|
|
gl = "git log --oneline --decorate --all --graph -n 10";
|
|
|
|
gm = "git merge";
|
2023-07-18 13:19:49 +02:00
|
|
|
gp = "git push";
|
|
|
|
gr = "git reset HEAD~";
|
2023-06-06 16:03:09 +02:00
|
|
|
gR = "git restore";
|
|
|
|
gRs = "git restore --staged";
|
2023-05-18 15:49:56 +02:00
|
|
|
gra = "git remote add";
|
2023-07-18 13:19:49 +02:00
|
|
|
gre = "git remote --verbose";
|
2023-05-18 15:49:56 +02:00
|
|
|
grh = "git reset HEAD";
|
2023-07-18 13:19:49 +02:00
|
|
|
grr = "git reset --hard HEAD~";
|
2023-05-18 15:49:56 +02:00
|
|
|
gs = "git status";
|
|
|
|
gst = "git stash";
|
|
|
|
gstp = "git stash pop";
|
|
|
|
gt = "git tag";
|
|
|
|
gts = "git tag -s";
|
|
|
|
|
|
|
|
y = "yarn";
|
|
|
|
ya = "yarn add";
|
|
|
|
yar = "yarn remove";
|
|
|
|
yi = "yarn init";
|
|
|
|
yin = "yarn install";
|
|
|
|
yu = "yarn upgrade-interactive";
|
|
|
|
|
2023-07-15 18:42:11 +02:00
|
|
|
tp = "trash put";
|
|
|
|
tl = "trash list";
|
|
|
|
tr = "trash restore";
|
|
|
|
te = "trash empty";
|
|
|
|
|
2023-05-18 15:49:56 +02:00
|
|
|
dl = "yt-dlp";
|
2023-06-06 02:37:52 +02:00
|
|
|
vol = "wpctl set-volume '@DEFAULT_AUDIO_SINK@'"; # Change the volume, e.g. vol 10%+, vol 10%-, vol 100%
|
2023-07-03 02:03:22 +02:00
|
|
|
nf = "clear; and neofetch --size 56%";
|
2023-05-18 15:49:56 +02:00
|
|
|
df = "df --human-readable --type=ext4 --total";
|
|
|
|
du = "du --human-readable --summarize";
|
2023-06-06 02:37:52 +02:00
|
|
|
jis = "recode shift_jis..utf8"; # Easily convert shift_jis-encoded files to utf8
|
|
|
|
utf16 = "recode utf16..utf8"; # Rarely, some files from Japan are utf16 instead
|
2023-05-18 15:49:56 +02:00
|
|
|
jp = "LANG=ja_JP.UTF-8 LC_ALL=ja_JP.UTF-8";
|
2023-06-22 17:00:39 +02:00
|
|
|
vm = /* fish */ ''cd ~/nix-config && crystal spec tests/main.cr --progress --verbose --tag local && nixos-rebuild build-vm --flake . --verbose && ./result/bin/run-nixos-vm && trash put result nixos.qcow2'';
|
2023-06-11 02:07:54 +02:00
|
|
|
sw = "cd ~/nix-config && crystal spec tests/main.cr --progress --verbose --tag local && sudo nixos-rebuild switch --flake . --verbose";
|
|
|
|
st = "cd ~/nix-config && crystal spec tests/main.cr --progress --verbose --tag local";
|
2023-06-12 09:48:15 +02:00
|
|
|
tf = "treefmt";
|
2023-05-18 15:49:56 +02:00
|
|
|
|
2023-07-18 13:19:49 +02:00
|
|
|
c = "clear";
|
2023-05-18 15:49:56 +02:00
|
|
|
e = "exit";
|
|
|
|
l = "ls -l";
|
2023-06-06 16:37:06 +02:00
|
|
|
n = "nvim";
|
2023-05-27 21:37:07 +02:00
|
|
|
j = "joshuto";
|
2023-06-06 16:17:06 +02:00
|
|
|
t = "tree";
|
2023-05-18 15:49:56 +02:00
|
|
|
};
|
|
|
|
};
|
2023-05-17 01:10:15 +02:00
|
|
|
}
|