nixos/lean-nixos: init

This commit is contained in:
Primrose 2026-01-24 23:10:48 +01:00
parent 2a9804f87f
commit 4514493746
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -0,0 +1,14 @@
# disable unused tools on nixos systems (that I don't use)
{
system.tools = {
# build a network of virtual machines? never used this.
nixos-build-vms.enable = false;
# only useful for installer
nixos-generate-config.enable = false;
nixos-install.enable = false;
# interactively show options, just use the repl instead
nixos-option.enable = false;
};
}