chore: bit of cleaning
This commit is contained in:
parent
9e2efdf6b3
commit
d6da8c55c9
3 changed files with 18 additions and 14 deletions
|
@ -1,17 +1,17 @@
|
|||
{ pkgs, lib, ... }:
|
||||
let
|
||||
inherit (lib.my) checkPath;
|
||||
in
|
||||
{
|
||||
programs.fish = {
|
||||
enable = true;
|
||||
shellAbbrs = {
|
||||
clip = "wl-copy";
|
||||
|
||||
sd = ''cd "$(dirname "$HOME/$(env --chdir ~ fzf)")"'';
|
||||
|
||||
};
|
||||
functions = {
|
||||
gitignore = "curl -sL https://www.gitignore.io/api/$argv";
|
||||
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 = ''
|
||||
set -f input "$PWD/$argv[1]"
|
||||
|
@ -19,7 +19,7 @@
|
|||
if not test -d $input
|
||||
echo "input is not a directory"
|
||||
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
|
||||
'';
|
||||
fish_prompt = builtins.readFile ./fish_prompt.fish;
|
||||
|
|
|
@ -7,15 +7,6 @@
|
|||
./portals.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/audio.nix
|
||||
./system/mime.nix
|
||||
|
@ -25,5 +16,6 @@
|
|||
./nix
|
||||
./themes
|
||||
./commons
|
||||
./programs
|
||||
];
|
||||
}
|
||||
|
|
12
modules/programs/default.nix
Normal file
12
modules/programs/default.nix
Normal file
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
imports = [
|
||||
./firefox.nix
|
||||
./thunderbird.nix
|
||||
./sway.nix
|
||||
./lazygit.nix
|
||||
./steam.nix
|
||||
./hyprland.nix
|
||||
./ssh.nix
|
||||
./fish.nix
|
||||
];
|
||||
}
|
Loading…
Add table
Reference in a new issue