Created
March 1, 2025 15:30
-
-
Save xdevs23/03faab61052d7e77373ed7e70f37e4f2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ pkgs, lib, config, inputs, ... }: | |
{ | |
cachix.enable = false; | |
packages = with pkgs; [ | |
step-ca | |
]; | |
services.postgres.enable = true; | |
services.postgres.initialDatabases = [ | |
{ | |
name = "db"; | |
user = "user"; | |
pass = "dev"; | |
} | |
]; | |
services.caddy.enable = true; | |
services.caddy.config = " | |
172.16.0.1:80 | |
respond nice | |
"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment