summaryrefslogtreecommitdiff
path: root/users/default.nix
blob: 38d391f2cd3e4996052feb9b8af29cd50ee419c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  self,
  withSystem,
  ...
}: {
  flake.homeConfigurations = let
    inherit (self.lib) homeManagerConfiguration;
    pkgsFor = system: withSystem system ({pkgs, ...}: pkgs);
  in {
    seth = homeManagerConfiguration {
      pkgs = pkgsFor "x86_64-linux";
      modules = [./seth/home.nix];
    };
  };
}