From dcf2aeeee165c2419dd3f4794fc6dbc45bd89389 Mon Sep 17 00:00:00 2001 From: osbm Date: Fri, 7 Nov 2025 10:18:46 +0300 Subject: [PATCH] group systemd --- hosts/nixos/ymir/configuration.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/hosts/nixos/ymir/configuration.nix b/hosts/nixos/ymir/configuration.nix index a585928..c261256 100644 --- a/hosts/nixos/ymir/configuration.nix +++ b/hosts/nixos/ymir/configuration.nix @@ -25,15 +25,17 @@ i18n.enable = true; }; - networking.hostName = "ymir"; # Define your hostname. + networking = { + hostName = "ymir"; # Define your hostname. - networking.firewall.allowedTCPPorts = [ - 8889 - 8000 - ]; + firewall.allowedTCPPorts = [ + 8889 + 8000 + ]; - # Enable networking - networking.networkmanager.enable = true; + # Enable networking + networkmanager.enable = true; + }; virtualisation.waydroid.enable = true;