From a89c177165d26391c9277ae41a731f6d35f71918 Mon Sep 17 00:00:00 2001 From: voidarc Date: Wed, 29 Jul 2026 21:09:03 +0100 Subject: [PATCH] fixup! removed useless imports --- modules/system/core/default.nix | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/modules/system/core/default.nix b/modules/system/core/default.nix index 883bdef..67b5907 100644 --- a/modules/system/core/default.nix +++ b/modules/system/core/default.nix @@ -15,20 +15,17 @@ locale ]; in { - imports = - [ - # /etc/nixos/hardware-configuration.nix - ] - ++ modules; + imports = modules; + services = { openssh = { enable = true; settings = { PermitRootLogin = "yes"; - } - ; + }; }; }; + environment.systemPackages = with pkgs; [ vim unzip @@ -39,6 +36,7 @@ curlWithGnuTls wget ]; + system.stateVersion = "26.02"; }; }