From 2dfecf7653cf29bc25c9a05a262621f9ec53a99b Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 10 Jul 2025 00:41:11 +0200 Subject: [PATCH] Home/Thinknix: Add thinknix config --- home/christoph/thinknix/default.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 home/christoph/thinknix/default.nix diff --git a/home/christoph/thinknix/default.nix b/home/christoph/thinknix/default.nix new file mode 100644 index 00000000..42750a44 --- /dev/null +++ b/home/christoph/thinknix/default.nix @@ -0,0 +1,20 @@ +{ + pkgs, + nixosConfig, + config, + lib, + username, + ... +}: { + imports = [ + ../../modules + ]; + + config = { + home.packages = with pkgs; [ + docker-compose + ]; + + home.stateVersion = "23.05"; + }; +}