Drop my prefix

This commit is contained in:
Sandro - 2022-06-20 20:17:13 +02:00
parent 74f64931ba
commit af702c0cd8
Signed by: sandro
GPG Key ID: 3AF5A43A3EECC2E5
2 changed files with 3 additions and 3 deletions

View File

@ -13,7 +13,7 @@
networking.hostName = "public-access-proxy";
my.services.proxy = {
services.proxy = {
enable = true;
proxyHosts = [ {
hostNames = [ "vps1.nixvita.de" "vps1.codetu.be" "nixvita.de" ];

View File

@ -1,13 +1,13 @@
{ config, lib, pkgs, ... }:
with lib;
let cfg = config.my.services.proxy;
let cfg = config.services.proxy;
canonicalize = builtins.replaceStrings ["*" "." ":" "[" "]"] ["all" "_" "_" "" ""];
in {
options.my.services.proxy = {
options.services.proxy = {
enable = mkOption {
default = false;