1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
{ lib, config, inputs, self, ... }: let inherit (self.lib.configs) mapHMUsers; inherit (inputs) nixpkgs; pkgsFor = lib.genAttrs config.systems ( system: import nixpkgs { system = "x86_64-linux"; overlays = with inputs; [nur.overlay getchoo.overlays.default]; } ); in { flake.homeConfigurations = mapHMUsers { seth.pkgs = pkgsFor."x86_64-linux"; }; }