Fix DNS, fmt
This commit is contained in:
parent
7d751836de
commit
388091073a
2 changed files with 12 additions and 11 deletions
|
@ -216,9 +216,9 @@
|
||||||
"system-monitor@gnome-shell-extensions.gcampax.github.com"
|
"system-monitor@gnome-shell-extensions.gcampax.github.com"
|
||||||
"launch-new-instance@gnome-shell-extensions.gcampax.github.com"
|
"launch-new-instance@gnome-shell-extensions.gcampax.github.com"
|
||||||
];
|
];
|
||||||
disabled-extensions = [
|
disabled-extensions = [
|
||||||
"just-perfection-desktop@just-perfection"
|
"just-perfection-desktop@just-perfection"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
"org/gnome/settings-daemon/plugins/media-keys".custom-keybindings = ["/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"];
|
"org/gnome/settings-daemon/plugins/media-keys".custom-keybindings = ["/org/gnome/settings-daemon/plugins/media-keys/custom-keybindings/custom0/"];
|
||||||
|
@ -250,9 +250,9 @@
|
||||||
monospace-font-name = "FiraCode Nerd Font 11";
|
monospace-font-name = "FiraCode Nerd Font 11";
|
||||||
};
|
};
|
||||||
|
|
||||||
# "org/gnome/Ptyxis".default-profile-uuid = "quadradical";
|
# "org/gnome/Ptyxis".default-profile-uuid = "quadradical";
|
||||||
#
|
#
|
||||||
# "org/gnome/Ptyxis/Profiles/quadradical".palette = "nord";
|
# "org/gnome/Ptyxis/Profiles/quadradical".palette = "nord";
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -1,11 +1,12 @@
|
||||||
{
|
{
|
||||||
services.dnsproxy = {
|
services.dnsproxy = {
|
||||||
enable = true;
|
enable = true;
|
||||||
settings.upstream = ["https://base.dns.mullvad.net/dns-query"];
|
settings = rec {
|
||||||
|
upstream = ["https://base.dns.mullvad.net/dns-query"];
|
||||||
|
fallback = ["1.1.1.1"];
|
||||||
|
bootstrap = fallback;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
environment.etc."resolv.conf".text = ''
|
environment.etc."resolv.conf".text = "nameserver 0.0.0.0";
|
||||||
nameserver 0.0.0.0
|
|
||||||
nameserver 1.1.1.1 # Backup Nameserver
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue