diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-21 22:14:43 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-21 22:14:43 -0400 |
commit | 389670009962b2ce9be7f9e19430ac9d630ffd94 (patch) | |
tree | 40721026db9e9eb9de912cc05498a7c3bda25ea8 /flake.nix | |
parent | add dev shell to flake (diff) | |
download | dotfiles-nix-389670009962b2ce9be7f9e19430ac9d630ffd94.tar.gz dotfiles-nix-389670009962b2ce9be7f9e19430ac9d630ffd94.tar.bz2 dotfiles-nix-389670009962b2ce9be7f9e19430ac9d630ffd94.zip |
add thinkpad host
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -47,11 +47,13 @@ nixosConfigurations = { shinji = import ./hosts/shinji.nix {inherit inputs options;}; kaworu = import ./hosts/kaworu.nix {inherit inputs options;}; + thinkpad = import ./hosts/thinkpad.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; + thinkpad = nixosConfigurations.thinkpad.config.home-manager.users.${options.user}.home; }; lib = import ./lib { |