nix fmt with "nixfmt-rfc-style"
This commit is contained in:
parent
4a39b2cbfd
commit
eb9f742b1e
26 changed files with 460 additions and 267 deletions
|
|
@ -23,12 +23,18 @@ in
|
|||
services.podmanPods = {
|
||||
mywebapp = {
|
||||
name = "mywebapp";
|
||||
ports = [ "9090:80" "9443:443" ];
|
||||
ports = [
|
||||
"9090:80"
|
||||
"9443:443"
|
||||
];
|
||||
containers = {
|
||||
webserver = {
|
||||
enable = true;
|
||||
image = "nginx";
|
||||
volumes = [ "aaa:/config" "bbb:/data" ];
|
||||
volumes = [
|
||||
"aaa:/config"
|
||||
"bbb:/data"
|
||||
];
|
||||
};
|
||||
appserver = {
|
||||
image = "my-custom-app:latest";
|
||||
|
|
@ -50,8 +56,6 @@ in
|
|||
};
|
||||
};
|
||||
|
||||
|
||||
|
||||
# Extra packages
|
||||
# environment.systemPackages = with pkgs; [ ];
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue