diff options
| author | seth <[email protected]> | 2024-09-07 11:51:57 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-09-07 12:00:19 -0400 |
| commit | dee6c5d9cbc12ff3012a27a5e69dfe331089310b (patch) | |
| tree | 290b5862448b781776f6606534829d4a35c2ac7f /users | |
| parent | 8539ad118cd34e8f51e736e1c6bec7a19f0e15f1 (diff) | |
tree-wide: use flake module for configurations
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 ]; }; + }; } |
