From d20f8e5a106fe91987dca5c6920e6e6646ba6c86 Mon Sep 17 00:00:00 2001 From: Steven Date: Sun, 26 Mar 2023 00:06:49 -0400 Subject: [PATCH] added legacy packages for home manager --- flake.nix | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/flake.nix b/flake.nix index e56f07f..fa8ca6a 100644 --- a/flake.nix +++ b/flake.nix @@ -52,13 +52,14 @@ homeManagerConfiguration = { speccon18 = home-manager.lib.homeManagerConfiguration { pkgs = nixpkgs.legacyPackages.x86_64-linux; - username = "speccon18"; - homeDirectory = "/home/speccon18"; - configuration = { - imports = [ - ./.hm-modules/home-manager.nix - ]; - }; + modules = [ ./hm-modules/home-manager.nix]; + # username = "speccon18"; + # homeDirectory = "/home/speccon18"; + # configuration = { + # imports = [ + # ./.hm-modules/home-manager.nix + # ]; + # }; }; }; };