summaryrefslogtreecommitdiff
path: root/users/default.nix
blob: 671ce1408a895d1f371003d30c139020b154b1be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ 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 ];
      };
    };
}