changes 09-12-25

This commit is contained in:
2025-09-12 15:51:26 -04:00
parent f3a9f8fe27
commit d10d239e2e
11 changed files with 186 additions and 54 deletions

View File

@@ -1,6 +1,6 @@
{ inputs, pkgs, lib, config, self, host, ... }:
let
desktop = host == "oganesson";
desktop = host == "oganesson" || host == "phosphorous";
screenshot_bind = if desktop then
[
"super, print, exec, grimblast copy area"

View File

@@ -35,6 +35,7 @@ in {
nemo
feh
gtk3
vicut
imagemagick
vlc
lolcat
@@ -72,6 +73,7 @@ in {
discord
cloc
wine
fira-code
nerd-fonts.fira-code
nodejs_latest
] ++ scripts;

View File

@@ -14,7 +14,6 @@
gtp = "playshellsound ${self}/assets/sound/rm.wav; gtrash put";
sr = "source ~/.zshrc && source ~/.zshenv";
".." = "cd ..";
rm = "echo 'use \"gtp\" instead'";
psg = "ps aux | grep -v grep | grep -i -e VSZ -e";
mkdir = "mkdir -p";
pk = "pkill -9 -f";
@@ -36,6 +35,7 @@
shortdate = "date '+%m-%d-%y'";
suvi = "sudoedit";
suvide = "EDITOR=neovide; suvi";
rustdev = "nix develop github:km-clay/devshells#rust";
};
};
};

View File

@@ -21,6 +21,10 @@ in
export RESULT
echo "\$RESULT = $RESULT"
}
escaped() {
# escapes regex chars
sed 's/[^^]/[&]/g; s/\^/\\^/g' <<<"$1"
}
nix-shell() {
NIX_SHELL=true command nix-shell "$@" --run zsh
}