summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 7268eef..f4feb65 100644
--- a/flake.nix
+++ b/flake.nix
@@ -27,10 +27,12 @@
in rec {
nixosConfigurations = {
shinji = import ./hosts/shinji.nix { inherit inputs options; };
+ kaworu = import ./hosts/kaworu.nix { inherit inputs options; };
};
homeConfigurations = {
shinji = nixosConfigurations.shinji.config.home-manager.users.${options.user}.home;
+ kaworu = nixosConfigurations.kaworu.config.home-manager.users.${options.user}.home;
};
};
}