2025-05-29 15:39:42 +03:00
|
|
|
{ lib, ... }:
|
2024-08-05 17:17:33 +03:00
|
|
|
{
|
|
|
|
networking.hostName = "nixos";
|
|
|
|
|
2025-05-29 15:39:42 +03:00
|
|
|
imports = [ ../shared/base.nix ];
|
2024-08-05 17:17:33 +03:00
|
|
|
|
2024-08-05 18:22:23 +03:00
|
|
|
#Many installs will need this, and it won't hurt either way
|
|
|
|
services.qemuGuest.enable = true;
|
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;
|
2024-08-05 17:17:33 +03:00
|
|
|
}
|