From 42d918de2a44c175dfd1460fa2eb1414f5c31cfe Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Wed, 9 Jul 2025 00:11:02 +0200 Subject: [PATCH] Home/Servenix: Add initial servenix home configuration --- home/christoph/servenix/default.nix | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 home/christoph/servenix/default.nix diff --git a/home/christoph/servenix/default.nix b/home/christoph/servenix/default.nix new file mode 100644 index 00000000..f949e539 --- /dev/null +++ b/home/christoph/servenix/default.nix @@ -0,0 +1,19 @@ +{ + pkgs, + nixosConfig, + config, + lib, + ... +}: { + imports = [ + ../../modules + ]; + + config = { + home.packages = with pkgs; [ + docker-compose + ]; + + home.stateVersion = "23.05"; + }; +}