mirror of
https://github.com/TheWanderingCrow/CrOS.git
synced 2026-01-11 01:34:08 -05:00
nextdns on hosts
This commit is contained in:
parent
6dc701e568
commit
e484c54841
3 changed files with 10 additions and 1 deletions
|
|
@ -30,7 +30,6 @@ in {
|
|||
screen
|
||||
ouch
|
||||
bitwarden-cli
|
||||
nextdns
|
||||
;
|
||||
};
|
||||
|
||||
|
|
|
|||
|
|
@ -28,6 +28,7 @@ in {
|
|||
"hosts/common/core/fonts.nix"
|
||||
"hosts/common/core/sudo.nix"
|
||||
"hosts/common/core/nebula.nix"
|
||||
"hosts/common/core/dns.nix"
|
||||
"hosts/common/users/primary"
|
||||
"hosts/common/users/primary/${platform}.nix"
|
||||
"modules/common"
|
||||
|
|
|
|||
9
hosts/common/core/dns.nix
Normal file
9
hosts/common/core/dns.nix
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{pkgs, ...}: {
|
||||
environment.systemPackages = [
|
||||
pkgs.nextdns
|
||||
];
|
||||
services.nextdns = {
|
||||
enable = true;
|
||||
arguments = ["-config" "cc2b9b"];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue