From 8874fcf4fe95b20e0d0ecc0c4ff6c828354bc551 Mon Sep 17 00:00:00 2001 From: Annika Merris Date: Sat, 25 May 2024 09:15:29 -0400 Subject: [PATCH] Add envy To Flake --- flake.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/flake.nix b/flake.nix index 0ab5745..69b6d7c 100644 --- a/flake.nix +++ b/flake.nix @@ -49,6 +49,9 @@ kim = import ./hosts/kim { inherit inputs globals; }; + envy = import ./hosts/envy { + inherit inputs globals; + }; virt-nix = import ./hosts/virt-nix { inherit inputs globals; }; @@ -56,7 +59,8 @@ homeConfigurations = { kim = nixosConfigurations.kim.config.home-manager.users.${globals.user}.home; - virt-nix = nixosConfigurations.kim.config.home-manager.users.${globals.user}.home; + envy = nixosConfigurations.envy.config.home-manager.users.${globals.user}.home; + virt-nix = nixosConfigurations.virt-nix.config.home-manager.users.${globals.user}.home; }; }; }