chore: bit of cleaning

This commit is contained in:
Nydragon 2024-10-08 14:10:37 +02:00
parent 9e2efdf6b3
commit d6da8c55c9
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
3 changed files with 18 additions and 14 deletions

View file

@ -1,17 +1,17 @@
{ pkgs, lib, ... }: { pkgs, lib, ... }:
let
inherit (lib.my) checkPath;
in
{ {
programs.fish = { programs.fish = {
enable = true; enable = true;
shellAbbrs = { shellAbbrs = {
clip = "wl-copy"; clip = "wl-copy";
sd = ''cd "$(dirname "$HOME/$(env --chdir ~ fzf)")"'';
}; };
functions = { functions = {
gitignore = "curl -sL https://www.gitignore.io/api/$argv"; gitignore = "curl -sL https://www.gitignore.io/api/$argv";
mv-bad-creation-date = '' mv-bad-creation-date = ''
${lib.my.checkPath pkgs.exiftool "exiftool"} -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]" ${checkPath pkgs.exiftool "exiftool"} -if 'not $CreateDate' -p '$FileName' "$PWD/$argv[1]" | xargs -I {} mv -i "$PWD/$argv[1]/{}" "$argv[2]"
''; '';
rename-images = '' rename-images = ''
set -f input "$PWD/$argv[1]" set -f input "$PWD/$argv[1]"
@ -19,7 +19,7 @@
if not test -d $input if not test -d $input
echo "input is not a directory" echo "input is not a directory"
else else
${lib.my.checkPath pkgs.exiftool "exiftool"} -if '$CreateDate' -p '$FileName' "$input" | xargs -I {} jhead -n%Y-%m-%d-%H%M%S "$input/{}" ${checkPath pkgs.exiftool "exiftool"} -if '$CreateDate' -p '$FileName' "$input" | xargs -I {} jhead -n%Y-%m-%d-%H%M%S "$input/{}"
end end
''; '';
fish_prompt = builtins.readFile ./fish_prompt.fish; fish_prompt = builtins.readFile ./fish_prompt.fish;

View file

@ -7,15 +7,6 @@
./portals.nix ./portals.nix
./env.nix ./env.nix
./programs/firefox.nix
./programs/thunderbird.nix
./programs/sway.nix
./programs/lazygit.nix
./programs/steam.nix
./programs/hyprland.nix
./programs/ssh.nix
./programs/fish.nix
./system/printing.nix ./system/printing.nix
./system/audio.nix ./system/audio.nix
./system/mime.nix ./system/mime.nix
@ -25,5 +16,6 @@
./nix ./nix
./themes ./themes
./commons ./commons
./programs
]; ];
} }

View file

@ -0,0 +1,12 @@
{
imports = [
./firefox.nix
./thunderbird.nix
./sway.nix
./lazygit.nix
./steam.nix
./hyprland.nix
./ssh.nix
./fish.nix
];
}