From 467164a9527fec7a82009c64686e34689be01307 Mon Sep 17 00:00:00 2001 From: Celes Renata Date: Mon, 1 Dec 2025 01:14:18 -0800 Subject: [PATCH] Export system-services as NixOS module --- flake.nix | 3 +++ modules/home-manager.nix | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index e9111c8..3d9ee33 100644 --- a/flake.nix +++ b/flake.nix @@ -71,6 +71,9 @@ homeManagerModules.default = import ./modules/home-manager.nix; homeManagerModules.dots-hyprland = self.homeManagerModules.default; + nixosModules.default = import ./modules/components/system-services.nix; + nixosModules.dots-hyprland = self.nixosModules.default; + homeConfigurations = { declarative = home-manager.lib.homeManagerConfiguration { inherit pkgs; diff --git a/modules/home-manager.nix b/modules/home-manager.nix index 1e1fde5..ec8d029 100644 --- a/modules/home-manager.nix +++ b/modules/home-manager.nix @@ -18,7 +18,6 @@ in ./components/hyprland-config.nix ./components/terminal-config.nix ./components/touchegg.nix - ./components/system-services.nix ./components/config-override.nix ];