mirror of
https://forge.katzen.cafe/schrottkatze/nix-configs.git
synced 2024-11-05 15:16:23 +01:00
grrarr
This commit is contained in:
parent
c2757356ac
commit
d3fc6f38c4
|
@ -20,6 +20,7 @@
|
|||
wordsofgod.url = "git+https://gitlab.com/obsidianical/wordsofgod.git";
|
||||
karton.url = "git+https://gitlab.com/obsidianical/microbin.git";
|
||||
arion.url = "github:hercules-ci/arion";
|
||||
gumseite.url = "git+https://gitlab.com/schrottkatze/gum-schulsachen.git";
|
||||
};
|
||||
|
||||
outputs = { self, nixpkgs, nixpkgs-stable, home-manager, nixos-hardware, mac-brcm-fw, ... }@inputs: {
|
||||
|
|
|
@ -8,6 +8,10 @@
|
|||
group = "nginx";
|
||||
keyType = "rsa4096";
|
||||
};
|
||||
"katzen.cafe" = {
|
||||
group = "nginx";
|
||||
keyType = "rsa4096";
|
||||
};
|
||||
"vw.schrottkatze.de" = {
|
||||
group = "nginx";
|
||||
keyType = "rsa4096";
|
||||
|
@ -31,7 +35,7 @@
|
|||
};
|
||||
};
|
||||
|
||||
environment.systemPackages = [ inputs.meowsite.packages."x86_64-linux".default ];
|
||||
environment.systemPackages = [ inputs.meowsite.packages."x86_64-linux".default inputs.gumseite.packages."x86_64-linux".default ];
|
||||
|
||||
services.nginx = {
|
||||
enable = true;
|
||||
|
@ -47,6 +51,11 @@
|
|||
enableACME = true;
|
||||
root = "${inputs.meowsite.packages."x86_64-linux".default}";
|
||||
};
|
||||
"katzen.cafe" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
root = "${inputs.gumseite.packages."x86_64-linux".default}";
|
||||
};
|
||||
"vw.schrottkatze.de" = {
|
||||
forceSSL = true;
|
||||
enableACME = true;
|
||||
|
|
Loading…
Reference in a new issue