1

Home/Servenix: Add initial servenix home configuration

This commit is contained in:
2025-07-09 00:11:02 +02:00
parent f41c16a9f3
commit 38efd144cc

View File

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