Changed wallpaper to better fit the style of the WM - affected common variables - affected hyprland configuration - affected stylix configuration - included additional flake inputs Added Spicetify packages (not working) Added obs-studio home-manager program option Added vimkey navigation keybinds for Hyprland
5 lines
244 B
Nix
5 lines
244 B
Nix
{pkgs}:
|
|
pkgs.writeShellScriptBin "heic-to-jpg" ''
|
|
mkdir -p ./heic-to-jpg-out
|
|
${pkgs.findutils}/bin/find . -type f -print0 | ${pkgs.findutils}/bin/xargs -0 -I "{}" ${pkgs.imagemagick}/bin/magick "{}" -quality 100% ./jpg-out/"{}.conv.jpg"
|
|
''
|