summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorFreya Murphy <freya@freyacat.org>2025-06-21 22:14:43 -0400
committerFreya Murphy <freya@freyacat.org>2025-06-21 22:14:43 -0400
commit389670009962b2ce9be7f9e19430ac9d630ffd94 (patch)
tree40721026db9e9eb9de912cc05498a7c3bda25ea8 /flake.nix
parentadd dev shell to flake (diff)
downloaddotfiles-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.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/flake.nix b/flake.nix
index 349561f..c7ec637 100644
--- a/flake.nix
+++ b/flake.nix
@@ -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 {