forked from Fachschaft/nixConfig
26 lines
539 B
Nix
26 lines
539 B
Nix
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../roles
|
|
../../roles/vm.nix
|
|
../../modules/reverseProxy.nix
|
|
];
|
|
|
|
# System configuration here
|
|
|
|
networking.hostName = "cthulhu";
|
|
system.stateVersion = "25.05";
|
|
services.reverseProxy = {
|
|
enable = true;
|
|
redirects = import ./redirects.nix;
|
|
proxies = import ./proxies.nix;
|
|
};
|
|
# sops.secrets = {
|
|
# backupKey = {
|
|
# sopsFile = ./backupKey.secrets.yaml;
|
|
# owner = "root";
|
|
# group = "root";
|
|
# mode = "0400";
|
|
# };
|
|
# };
|
|
}
|