Reorganize configuration and prep for flakes
This commit is contained in:
parent
78439054dd
commit
dea7fcbf96
19 changed files with 250 additions and 95 deletions
12
hosts/nixos/configuration.nix
Normal file
12
hosts/nixos/configuration.nix
Normal 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;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue