Templates should not reference specific users. Users are added manually when creating a new host from the template.
9 lines
144 B
Nix
9 lines
144 B
Nix
{ inputs, outputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
outputs.nixosModules.normalUsers
|
|
# Add users here, e.g.:
|
|
# ../../users/<username>
|
|
];
|
|
}
|