From 38efd144ccbf92748cc9e6f16dfeb54971ef669f 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"; + }; +}