summaryrefslogtreecommitdiff
path: root/users/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-02-10 18:52:50 -0500
committerseth <[email protected]>2024-02-10 18:58:50 -0500
commit72346489e9ea53eb7689f5d632e854411f165da8 (patch)
tree033dc8411281f8308f497c48a851f5a1e2987783 /users/default.nix
parentde90fa19303213ace45952711bf0fd6b3cd85f3d (diff)
flakeModules/configurations: refactor into freeform module, add aliases
Diffstat (limited to 'users/default.nix')
-rw-r--r--users/default.nix17
1 files changed, 7 insertions, 10 deletions
diff --git a/users/default.nix b/users/default.nix
index 65bcb84..efa88d2 100644
--- a/users/default.nix
+++ b/users/default.nix
@@ -1,16 +1,13 @@
-{inputs, ...}: {
- configurations = {
- home = {
- builder = inputs.home-manager.lib.homeManagerConfiguration;
- pkgs = inputs.nixpkgs.legacyPackages.x86_64-linux;
-
- users = {
- seth = {};
- };
+{inputs, ...}: let
+ unstableFor = inputs.nixpkgs.legacyPackages;
+in {
+ homeConfigurations = {
+ seth = {
+ pkgs = unstableFor.x86_64-linux;
};
};
- flake.homeModules = {
+ homeModules = {
seth = import ./seth/module;
};
}