diff --git a/home/scripts/default.nix b/home/scripts/default.nix index 9a6af5f..6b5e207 100644 --- a/home/scripts/default.nix +++ b/home/scripts/default.nix @@ -6,6 +6,7 @@ }: let inherit (pkgs.writers) writeFishBin; + inherit (lib.my) getExe; nixos-rebuild = name: word: writeFishBin name '' @@ -56,10 +57,10 @@ in nixedit = writeFishBin "nixedit" "env --chdir ~/.nixconf $EDITOR ."; - getext = pkgs.writeScriptBin "ls | grep -E \"\.[a-zA-Z0-9]+$\" --only-matching | sort | uniq"; + getext = pkgs.writeScriptBin "getext" "ls | grep -E \"\.[a-zA-Z0-9]+$\" --only-matching | sort | uniq"; rpaste = writeFishBin "rpaste" '' - ${pkgs.rustypaste-cli}/bin/rpaste -a "$(cat ${config.age.secrets.rustypaste.path})" -s "https://rusty.ccnlc.eu/" $argv + ${getExe pkgs.rustypaste-cli} -a "$(cat ${config.age.secrets.rustypaste.path})" -s "https://rusty.ccnlc.eu/" $argv ''; gentest = nixos-rebuild "gentest" "test"; @@ -76,7 +77,7 @@ in end ''; - nruni = writeFishBin '' + nruni = writeFishBin "nruni" '' export NIXPKGS_ALLOW_UNFREE=1; export NIXPKGS_ALLOW_INSECURE=1 @@ -100,14 +101,14 @@ in nixos-rebuild test \ --flake ~/.nixconf#"$argv[1]" \ --target-host "$argv[1]" \ - --use-remote-sudo &| ${pkgs.nix-output-monitor}/bin/nom + --use-remote-sudo &| ${getExe pkgs.nix-output-monitor} ''; deployswitch = writeFishBin "deployswitch" '' nixos-rebuild switch \ --flake ~/.nixconf#"$argv[1]" \ --target-host "$argv[1]" \ - --use-remote-sudo &| ${pkgs.nix-output-monitor}/bin/nom + --use-remote-sudo &| ${getExe pkgs.nix-output-monitor} ''; } diff --git a/home/terminal/beets.nix b/home/terminal/beets.nix index 3bd1ea8..238134a 100644 --- a/home/terminal/beets.nix +++ b/home/terminal/beets.nix @@ -39,7 +39,7 @@ in fetchart = { auto = true; cover_format = "jpg"; - maxwidth = 500; + minheight = 500; minwidth = 500; enforce_ratio = true; high_resolution = true; diff --git a/hosts/marr/home.nix b/hosts/marr/home.nix index 16be415..1064a63 100644 --- a/hosts/marr/home.nix +++ b/hosts/marr/home.nix @@ -82,6 +82,7 @@ scripts.set-background scripts.rpaste scripts.nrun + scripts.nruni scripts.genswitch scripts.gentest scripts.editsym