nixos-conf/hosts/generic.nix

13 lines
315 B
Nix
Raw Normal View History

2025-05-29 15:39:42 +03:00
{ lib, ... }:
{
networking.hostName = "nixos";
2025-05-29 15:39:42 +03:00
imports = [ ../shared/base.nix ];
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;
}