Add clean function

This commit is contained in:
Oliver Davies 2025-03-28 12:13:32 +00:00
parent b583d82e5d
commit 90497bbdd0

5
run
View file

@ -8,6 +8,11 @@ function build {
_nixos build "$@"
}
function clean {
nix store optimise --verbose
nix store gc --verbose
}
function check {
nix flake check
}