From a4513f63272083ac68575b67faa150139af38200 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Mon, 16 Feb 2026 11:01:54 -0600 Subject: [PATCH] desktop flakeModule --- modules/profiles/desktop.nix | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/modules/profiles/desktop.nix b/modules/profiles/desktop.nix index 766a861..af0311b 100644 --- a/modules/profiles/desktop.nix +++ b/modules/profiles/desktop.nix @@ -1,15 +1,24 @@ -{ inputs, self, ... }: -{ +{ inputs, ... }: +{ + flake.homeModules.desktop = + { pkgs, ... } : + { + imports = with inputs.self.homeModules; [ + john + ssh + git + rebuild + ghostty + sops + zsh + ]; + }; + + flake.homeConfigurations.desktop = inputs.home-manager.lib.homeManagerConfiguration { pkgs = import inputs.nixpkgs { system = "x86_64-linux"; }; modules = with inputs.self.homeModules; [ - john - ssh - git - rebuild - ghostty - sops - zsh + desktop ]; }; }