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