mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
DNS, update font nomenclature
This commit is contained in:
parent
6127a9df0b
commit
a12b8ace7e
6 changed files with 28 additions and 5 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
fonts = {
|
||||
fonts = with pkgs; [
|
||||
packages = with pkgs; [
|
||||
font-awesome
|
||||
twitter-color-emoji
|
||||
iosevka-bin
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{pkgs, ...}: {
|
||||
fonts.fonts = [
|
||||
fonts.packages = [
|
||||
pkgs.tamzen
|
||||
];
|
||||
i18n = {
|
||||
|
|
|
|||
17
nixos/roles/graphical/dns.nix
Normal file
17
nixos/roles/graphical/dns.nix
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
_: {
|
||||
networking = {
|
||||
nameservers = [
|
||||
"194.242.2.2" # For now, Mullvad DNS.
|
||||
];
|
||||
};
|
||||
services.resolved = {
|
||||
enable = true;
|
||||
fallbackDns = [
|
||||
"1.1.1.1"
|
||||
];
|
||||
dnssec = "false";
|
||||
extraConfig = ''
|
||||
DNSOverTLS=yes
|
||||
'';
|
||||
};
|
||||
}
|
||||
|
|
@ -1,6 +1,11 @@
|
|||
_: {
|
||||
{pkgs, ...}: {
|
||||
fonts = {
|
||||
enableDefaultFonts = true;
|
||||
packages = with pkgs; [
|
||||
font-awesome
|
||||
twitter-color-emoji
|
||||
iosevka-bin
|
||||
];
|
||||
enableDefaultPackages = true;
|
||||
fontDir.enable = true;
|
||||
fontconfig = {
|
||||
enable = true;
|
||||
|
|
|
|||
|
|
@ -5,6 +5,6 @@
|
|||
programs.gnupg.agent = {
|
||||
enable = true;
|
||||
enableSSHSupport = true;
|
||||
pinentryFlavor = "gtk2";
|
||||
pinentryFlavor = "qt";
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue