10 lines
224 B
Nix
10 lines
224 B
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
../../shared/base.nix
|
|
../../shared/hardware/vm.nix
|
|
];
|
|
|
|
#Prevent user from being locked out of the system before switching to proper config
|
|
users.mutableUsers = lib.mkForce true;
|
|
}
|