ssh, avahi and stateversion added to core

This commit is contained in:
2026-07-07 13:52:10 +01:00
parent 80627250ec
commit 47228d878c

View File

@@ -21,6 +21,10 @@
/etc/nixos/hardware-configuration.nix /etc/nixos/hardware-configuration.nix
] ]
++ modules; ++ modules;
services = {
openssh.enable = true;
avahi.enable = true;
};
environment.systemPackages = with pkgs; [ environment.systemPackages = with pkgs; [
vim vim
unzip unzip
@@ -33,5 +37,6 @@
curlWithGnuTls curlWithGnuTls
wget wget
]; ];
system.stateVersion = "25.05";
}; };
} }