25 lines
461 B
Nix
25 lines
461 B
Nix
{ 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; [
|
|
desktop
|
|
];
|
|
};
|
|
}
|