# Hide the default option from the recipes list _default: print-recipes find-results: find . -name '*result*' print-recipes: @just --list update: nix flake update # Update a single input update-input input: nix flake lock --update-input {{input}} alias build := build-nixos # Build a NixOS configuration build-nixos host=`hostname`: nixos-rebuild build --flake .#{{host}} # nix-diff with some parameters piped to less nix-diff left right: nix-diff --color=always --skip-already-compared {{left}} {{right}} | less -F