From 47228d878c901ccee7cea5927569ad6f58f4e56a Mon Sep 17 00:00:00 2001 From: voidarc Date: Tue, 7 Jul 2026 13:52:10 +0100 Subject: [PATCH] ssh, avahi and stateversion added to core --- modules/system/core/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/modules/system/core/default.nix b/modules/system/core/default.nix index 125b3b9..d2ec884 100644 --- a/modules/system/core/default.nix +++ b/modules/system/core/default.nix @@ -21,6 +21,10 @@ /etc/nixos/hardware-configuration.nix ] ++ modules; + services = { + openssh.enable = true; + avahi.enable = true; + }; environment.systemPackages = with pkgs; [ vim unzip @@ -33,5 +37,6 @@ curlWithGnuTls wget ]; + system.stateVersion = "25.05"; }; }