diff options
Diffstat (limited to 'users')
| -rw-r--r-- | users/default.nix | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/users/default.nix b/users/default.nix index 6ead5c3..bb0f198 100644 --- a/users/default.nix +++ b/users/default.nix @@ -1,16 +1,7 @@ -{ 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 ]; - }; + homeConfigurations = { + seth = { + modules = [ ./seth/home.nix ]; }; + }; } |
