From 739477bd47d8cc9f1105ea31cb9f0ee3a629831d Mon Sep 17 00:00:00 2001 From: John Bowdre Date: Mon, 31 Jul 2023 12:36:23 -0500 Subject: [PATCH] update flake with new home path --- flake.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/flake.nix b/flake.nix index 3c99a7a..c40b465 100644 --- a/flake.nix +++ b/flake.nix @@ -59,17 +59,17 @@ # Available through 'home-manager --flake .#your-username@your-hostname' homeConfigurations = { "john@penguin-fw" = lib.homeManagerConfiguration { - modules = [ ./nix/home/penguin-fw.nix ]; + modules = [ ./nix/home/john/penguin-fw.nix ]; pkgs = pkgsFor.x86_64-linux; extraSpecialArgs = { inherit inputs outputs; }; }; "john@penguin-duet" = lib.homeManagerConfiguration { - modules = [ ./nix/home/penguin-duet.nix ]; + modules = [ ./nix/home/john/penguin-duet.nix ]; pkgs = pkgsFor.aarch64-linux; extraSpecialArgs = { inherit inputs outputs; }; }; "john@pixnix" = lib.homeManagerConfiguration { - modules = [ ./nix/home/pixnix.nix ]; + modules = [ ./nix/home/john/pixnix.nix ]; pkgs = pkgsFor.x86_64-linux; extraSpecialArgs = { inherit inputs outputs; }; };