desktop flakeModule

This commit is contained in:
John Lancaster
2026-02-16 11:01:54 -06:00
parent db6b8c0fb2
commit a4513f6327

View File

@@ -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 { flake.homeConfigurations.desktop = inputs.home-manager.lib.homeManagerConfiguration {
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; }; pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
modules = with inputs.self.homeModules; [ modules = with inputs.self.homeModules; [
john desktop
ssh
git
rebuild
ghostty
sops
zsh
]; ];
}; };
} }