This commit is contained in:
Alejandro Angulo 2024-05-03 19:59:19 -07:00
parent 63c776c238
commit 1fd5706593
Signed by: alejandro-angulo
GPG key ID: 75579581C74554B6
3 changed files with 21 additions and 23 deletions

View file

@ -13,7 +13,7 @@ in {
enable = mkEnableOption "manage nix configuration.";
package = mkOption {
type = package;
default = pkgs.nixVersions.unstable;
default = pkgs.nixVersions.git;
description = "Which nix package to use.";
};

View file

@ -25,10 +25,8 @@ in {
services.adguardhome = {
enable = true;
mutableSettings = true;
settings = {
bind_host = "0.0.0.0";
bind_port = 3000;
};
host = "0.0.0.0";
port = 3000;
};
services.nginx = {