summaryrefslogtreecommitdiff
path: root/modules/shared/users/default.nix
blob: 6e1a3f6cfe17e86494f5ffea4063589c27e0dafc (plain)
1
2
3
4
5
6
7
8
9
10
11
{inputs, ...}: {
  imports = [
    ./seth.nix
  ];

  home-manager = {
    useGlobalPkgs = true;
    useUserPackages = true;
    extraSpecialArgs = {inherit inputs;};
  };
}