summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-01-27 22:38:04 -0500
committerFreya Murphy <freya@freyacat.org>2025-01-27 22:39:52 -0500
commit236f965779fb3e7ec3f2e41f262a498ec7122ae6 (patch)
tree36e5334345f7bc0d85e18ba6bf413526fa148961 /flake.nix
parentscreenshot and office apps (diff)
downloaddotfiles-nix-236f965779fb3e7ec3f2e41f262a498ec7122ae6.tar.gz
dotfiles-nix-236f965779fb3e7ec3f2e41f262a498ec7122ae6.tar.bz2
dotfiles-nix-236f965779fb3e7ec3f2e41f262a498ec7122ae6.zip
add kaworu system (desktop)
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;
};
};
}