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, ... }:
|
{ 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;
|
||||||
|
|
|
@ -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
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
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