diff options
author | Freya Murphy <freya@freyacat.org> | 2025-01-27 22:38:04 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-01-27 22:39:52 -0500 |
commit | 236f965779fb3e7ec3f2e41f262a498ec7122ae6 (patch) | |
tree | 36e5334345f7bc0d85e18ba6bf413526fa148961 /flake.nix | |
parent | screenshot and office apps (diff) | |
download | dotfiles-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.nix | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; }; }; } |