style(service): minor refactor

This commit is contained in:
2026-03-07 12:36:03 +01:00
parent 3cdfc92254
commit 32b398cdb9
3 changed files with 3 additions and 8 deletions

View File

@@ -4,9 +4,8 @@
./configuration.nix ./configuration.nix
./hardware.nix ./hardware.nix
./networking.nix ./networking.nix
./services.nix
./virtualisation.nix
./services ./services
./virtualisation.nix
]; ];
networking.hostName = "bomba"; networking.hostName = "bomba";

View File

@@ -1,6 +0,0 @@
{ ... }:
{
services = {
openssh.enable = true;
};
}

View File

@@ -3,4 +3,6 @@
imports = [ imports = [
./gitea.nix ./gitea.nix
]; ];
services.openssh.enable = true;
} }