1

Home/Thinknix: Add thinknix config

This commit is contained in:
2025-07-10 00:41:11 +02:00
parent 0dfc11363a
commit 2dfecf7653

View File

@ -0,0 +1,20 @@
{
pkgs,
nixosConfig,
config,
lib,
username,
...
}: {
imports = [
../../modules
];
config = {
home.packages = with pkgs; [
docker-compose
];
home.stateVersion = "23.05";
};
}