From 72346489e9ea53eb7689f5d632e854411f165da8 Mon Sep 17 00:00:00 2001 From: seth Date: Sat, 10 Feb 2024 18:52:50 -0500 Subject: flakeModules/configurations: refactor into freeform module, add aliases --- users/default.nix | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) (limited to 'users') 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; }; } -- cgit v1.2.3