diff options
Diffstat (limited to 'config/default.nix')
| -rw-r--r-- | config/default.nix | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/config/default.nix b/config/default.nix index 07ec68d..9ddb7db 100644 --- a/config/default.nix +++ b/config/default.nix @@ -1,9 +1,10 @@ -{modulesPath, ...}: { +{lib, modulesPath, ...}: { imports = [ - (modulesPath + "/profiles/headless.nix") + # (modulesPath + "/profiles/headless.nix") (modulesPath + "/profiles/minimal.nix") ./boot.nix ./environment.nix + ./hardware ./networking.nix ./nix.nix ./services @@ -14,6 +15,10 @@ # originally enabled in modulesPath + profiles/minimal.nix environment.noXlibs = false; + # re-enable console + # disabled by headless profile + # systemd.services."getty@tty1".enable = lib.mkForce true; + # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave |
