1

Home/Servenix: Add initial servenix home configuration

This commit is contained in:
2025-07-09 00:11:02 +02:00
parent cb83b4f592
commit 1988d900c3

View File

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