summaryrefslogtreecommitdiff
path: root/users/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'users/default.nix')
-rw-r--r--users/default.nix23
1 files changed, 11 insertions, 12 deletions
diff --git a/users/default.nix b/users/default.nix
index 38d391f..671ce14 100644
--- a/users/default.nix
+++ b/users/default.nix
@@ -1,15 +1,14 @@
+{ self, withSystem, ... }:
{
- 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];
+ 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 ];
+ };
};
- };
}