1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
{ self, withSystem, ... }: { flake.homeConfigurations = let # see ./lib/builders.nix inherit (self.lib) homeManagerConfiguration; pkgsFor = system: withSystem system ({ pkgs, ... }: pkgs); in { seth = homeManagerConfiguration { pkgs = pkgsFor "x86_64-linux"; modules = [ ./seth/home.nix ]; }; }; }