synix/tests/build/nixos-server/users.nix
sid ecf5132cbb
Some checks failed
Build tests / build-hosts (pull_request) Failing after 3s
Flake check / flake-check (pull_request) Failing after 13s
enforce new flake schema. formatting.
2026-05-31 18:50:41 +02:00

13 lines
154 B
Nix

{ outputs, ... }:
{
imports = [
outputs.nixosModules.normalUsers
];
normalUsers.test-user = {
extraGroups = [
"wheel"
];
};
}