about summary refs log tree commit diff
path: root/nixos/tests/without-nix.nix
AgeCommit message (Collapse)AuthorFilesLines
2022-03-21nixos: Make config.nix.enable pass testRobert Hensing1-0/+15
2022-03-18nixos/tests: fix some evaluation errorsNaïm Favier1-6/+0
Fixes errors caught by "nixos/testing: restrict arguments to makeTest" as well as some unrelated errors and warnings.
2021-10-06nixos/nix-daemon: Add enable optionJohn Ericson1-0/+23
Don't worry, it's is true by default. But I think this is important to have because NixOS indeed shouldn't need Nix at run time when the installation is not being modified, and now we can verify that. NixOS images that cannot "self-modify" are a legitamate use-case that this supports more minimally. One should be able to e.g. do a sshfs mount and use `nixos-install` to modify them remotely, or just discard them and build fresh ones if they are run VMs or something. The next step would be to make generations optional, allowing just baking `/etc` and friends rather than using activation scripts. But that's more involved so I'm leaving it out.