make templates user-agnostic
Some checks failed
Deploy / flake-check (push) Successful in 40s
Deploy / deploy-cryodev-main (push) Has been cancelled
Deploy / create-release (push) Has been cancelled
Deploy / build-pi-images (cryodev-pi) (push) Has been cancelled

Templates should not reference specific users. Users are added
manually when creating a new host from the template.
This commit is contained in:
steffen 2026-03-14 14:20:23 +01:00
parent 7c7eaf32af
commit 5607cad78f
2 changed files with 4 additions and 2 deletions

View file

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
outputs.nixosModules.normalUsers outputs.nixosModules.normalUsers
../../users/steffen # Add users here, e.g.:
# ../../users/<username>
]; ];
} }

View file

@ -3,6 +3,7 @@
{ {
imports = [ imports = [
outputs.nixosModules.normalUsers outputs.nixosModules.normalUsers
../../users/steffen # Add users here, e.g.:
# ../../users/<username>
]; ];
} }