Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
nifoc committed Aug 7, 2023
1 parent e2559c0 commit 6419639
Show file tree
Hide file tree
Showing 4 changed files with 64 additions and 59 deletions.
36 changes: 18 additions & 18 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions hardware/hosts/argon.nix
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"net.ipv4.tcp_timestamps" = 1;
"net.ipv4.tcp_window_scaling" = 1;
"net.core.rmem_max" = 2500000;
"net.core.wmem_max" = 2500000;
};
};

Expand Down
18 changes: 9 additions & 9 deletions home/programs/nvim/plugins.nix
Original file line number Diff line number Diff line change
Expand Up @@ -118,12 +118,12 @@ in
};
nvim-treesitter = buildVimPluginFrom2Nix {
pname = "nvim-treesitter";
version = "2023-08-05";
version = "2023-08-07";
src = fetchFromGitHub {
owner = "nvim-treesitter";
repo = "nvim-treesitter";
rev = "8d5e5dc40a4c480483690777cefb8cf67e710702";
sha256 = "1dhpv1xwz1srq0x1i5ziqssxnhq2q2vg9ja3cghgxvhyavq81ax5";
rev = "d9e75a1736a960a104ff3086fc553a054f51835b";
sha256 = "1rv91rpij9gvlnhp9anhvxca038q9c999yvwqlggzycxjcxxbpfp";
fetchSubmodules = false;
};
};
Expand Down Expand Up @@ -162,12 +162,12 @@ in
};
telescope-nvim = buildVimPluginFrom2Nix {
pname = "telescope.nvim";
version = "2023-08-05";
version = "2023-08-07";
src = fetchFromGitHub {
owner = "nvim-telescope";
repo = "telescope.nvim";
rev = "31b05ad3c313210039fae6958fb00449d72c259e";
sha256 = "03c1yn8mlkwcvvq4cqfhr2xkkr4xf4g82rgdcr22csr34ddfwxka";
rev = "dc192faceb2db64231ead71539761e055df66d73";
sha256 = "08d4k4z0ixz3y0kwpixry7zzbrb03zb570d13zdp5d0if7p9h68a";
fetchSubmodules = false;
};
};
Expand Down Expand Up @@ -308,12 +308,12 @@ in
};
comment-nvim = buildVimPluginFrom2Nix {
pname = "comment.nvim";
version = "2023-08-02";
version = "2023-08-07";
src = fetchFromGitHub {
owner = "numtostr";
repo = "comment.nvim";
rev = "d0cbbfb539898a275dc4398446ab0ae3b94819bf";
sha256 = "0dqb5ydpdsxzhf2v1dqg1vdqyvg8iqzc7ydiybvxik29mvc4ybp9";
rev = "0236521ea582747b58869cb72f70ccfa967d2e89";
sha256 = "1mvi7c6n9ybgs6lfylzhkidifa6jkgsbj808knx57blvi5k7blgr";
fetchSubmodules = false;
};
};
Expand Down
68 changes: 36 additions & 32 deletions system/nixos/adguardhome.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,38 +4,42 @@
services.adguardhome = {
enable = true;

settings = {
bind_host = "127.0.0.1";
bind_port = 3000;

users = [
{
inherit (secret.adguardhome.users.daniel) name password;
}
];

auth_attempts = 3;
debug_pprof = false;

dns = {
inherit (secret.adguardhome) bind_hosts;
port = 53;

bootstrap_dns = [
"9.9.9.11"
"149.112.112.11"
"2620:fe::11"
"2620:fe::fe:11"
];
};

tls = {
enabled = false;
allow_unencrypted_doh = true;
};

dhcp.enabled = false;
};
mutableSettings = true;
settings = null;

# settings = {
# schema_version = 20;
# bind_host = "127.0.0.1";
# bind_port = 3000;
#
# users = [
# {
# inherit (secret.adguardhome.users.daniel) name password;
# }
# ];
#
# auth_attempts = 3;
# debug_pprof = false;
#
# dns = {
# inherit (secret.adguardhome) bind_hosts;
# port = 53;
#
# bootstrap_dns = [
# "9.9.9.11"
# "149.112.112.11"
# "2620:fe::11"
# "2620:fe::fe:11"
# ];
# };
#
# tls = {
# enabled = false;
# allow_unencrypted_doh = true;
# };
#
# dhcp.enabled = false;
# };
};

networking.firewall.interfaces =
Expand Down

0 comments on commit 6419639

Please sign in to comment.