Files
dendritic/modules/home-manager/profiles/desktop.nix
2026-03-08 11:38:26 -05:00

26 lines
488 B
Nix

{ inputs, ... }:
{
flake.homeModules.desktop =
{ pkgs, ... } :
{
xdg.enable = true;
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
];
};
}