From 196170c8df5fb126041f5471da01f9d3d23c5562 Mon Sep 17 00:00:00 2001 From: voidarc Date: Mon, 6 Jul 2026 17:34:56 +0100 Subject: [PATCH] added network to desktop --- modules/system/desktop/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/system/desktop/default.nix b/modules/system/desktop/default.nix index 92113f2..a855061 100644 --- a/modules/system/desktop/default.nix +++ b/modules/system/desktop/default.nix @@ -10,10 +10,11 @@ }: let modules = with self.nixosModules; [ core - hyprland - sddm + hyprland + sddm + networking ]; in { - imports = modules; + imports = modules; }; }