{ inputs, ... }: { flake.homeModules.desktop = { pkgs, ... } : { imports = with inputs.self.homeModules; [ rebuild john ssh git shell ghostty sops ]; }; flake.homeConfigurations.desktop = inputs.home-manager.lib.homeManagerConfiguration { pkgs = import inputs.nixpkgs { system = "x86_64-linux"; }; modules = with inputs.self.homeModules; [ desktop ]; }; }