nixos-conf/hosts/nixos/configuration.nix

11 lines
224 B
Nix
Raw Normal View History

2025-05-29 15:39:42 +03:00
{ lib, ... }:
{
2025-06-05 01:04:54 +03:00
imports = [
../../shared/base.nix
../../shared/hardware/vm.nix
];
2024-08-28 13:18:09 +03:00
#Prevent user from being locked out of the system before switching to proper config
2025-05-29 15:39:42 +03:00
users.mutableUsers = lib.mkForce true;
}