added first lxc host "test-nix"

This commit is contained in:
John Lancaster
2026-03-09 00:25:41 -05:00
parent c773001a48
commit e3c29f8ba6
3 changed files with 49 additions and 0 deletions

View File

@@ -48,6 +48,20 @@ Show exported home configurations:
nix eval --apply builtins.attrNames .#homeConfigurations
```
### Testing
These commands would are useful for debugging
```shell
SYSTEM=lxc
# Just evaluate (fast, catches config errors)
nix eval .#nixosConfigurations.${SYSTEM}.config.system.build.toplevel
# Full build (slower, produces a bootable system)
nix build .#nixosConfigurations.${SYSTEM}.config.system.build.toplevel
```
### Remote Deploy
```shell