summaryrefslogtreecommitdiff
path: root/users/default.nix
blob: 28c03dc1d9a3adf37885cc4f1c156e5959cc04fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  inputs,
  self,
  ...
}: {
  flake.homeConfigurations = let
    users = {
      seth = {
        nixpkgsArgs = {
          overlays = with inputs; [nur.overlay getchoo.overlays.default];
        };
        modules = [
          inputs.nix-index-database.hmModules.nix-index
        ];
      };
    };
  in
    self.lib.configs.genHMCfgs users;
}