Reorganize configuration and prep for flakes

This commit is contained in:
Vili Sinervä 2025-06-01 14:15:50 +03:00
parent 78439054dd
commit dea7fcbf96
Signed by: Vili Sinervä
SSH key fingerprint: SHA256:FladqYjaE4scJY3Hi+gnShZ6ygnTJgixy0I6BAoHyos
19 changed files with 250 additions and 95 deletions

View file

@ -0,0 +1,12 @@
{ lib, ... }:
{
networking.hostName = "nixos";
imports = [ ../../shared/base.nix ];
#Many installs will need this, and it won't hurt either way
services.qemuGuest.enable = true;
#Prevent user from being locked out of the system before switching to proper config
users.mutableUsers = lib.mkForce true;
}