Files
dendritic/modules/profiles/desktop.nix
John Lancaster db6b8c0fb2 desktop profile
2026-02-16 10:57:49 -06:00

16 lines
317 B
Nix

{ inputs, self, ... }:
{
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
];
};
}