summaryrefslogtreecommitdiff
path: root/users/default.nix
blob: 83d8ce5d07ac6abd59042ac104aada404928bd89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  inputs,
  myLib,
  ...
}: {
  perSystem = {system, ...}: let
    inherit (myLib.configs inputs) mkHMUsers;
  in {
    homeConfigurations = mkHMUsers {
      seth = {
        pkgs = import inputs.nixpkgs {
          inherit system;
          overlays = with inputs; [nur.overlay getchoo.overlays.default];
        };
      };
    };
  };
}