1
Fork 0
mirror of https://github.com/thegeneralist01/config.git synced 2026-07-22 03:15:27 +02:00

Compare commits

..

No commits in common. "9e366fe80b588e39f460bef7df61052b673c9dd3" and "7bf3bd5c8ad72991d3c3f45585cf0401ad40f041" have entirely different histories.

2 changed files with 10 additions and 51 deletions

View file

@ -68,8 +68,7 @@ let
]) numbers ]) numbers
); );
# Swap Fn/Globe and left Control only on the built-in keyboard. simple_modifications = [
builtinKeyboardSimpleModifications = [
{ {
from.apple_vendor_top_case_key_code = "keyboard_fn"; from.apple_vendor_top_case_key_code = "keyboard_fn";
to = [ { key_code = "left_control"; } ]; to = [ { key_code = "left_control"; } ];
@ -86,7 +85,6 @@ let
is_keyboard = true; is_keyboard = true;
}; };
# Swap the G213's Windows/Alt modifiers.
logitechG213SimpleModifications = [ logitechG213SimpleModifications = [
{ {
from.key_code = "left_command"; from.key_code = "left_command";
@ -98,38 +96,6 @@ let
} }
]; ];
logitechMouseIdentifiers = {
vendor_id = 1133;
product_id = 50503;
is_pointing_device = true;
};
# Middle click sends Fn; side buttons navigate back and forward.
logitechMouseSimpleModifications = [
{
from.pointing_button = "button3";
to = [ { apple_vendor_top_case_key_code = "keyboard_fn"; } ];
}
{
from.pointing_button = "button4";
to = [
{
key_code = "open_bracket";
modifiers = [ "left_command" ];
}
];
}
{
from.pointing_button = "button5";
to = [
{
key_code = "close_bracket";
modifiers = [ "left_command" ];
}
];
}
];
complex_modifications = { complex_modifications = {
name = "Complex Modifications"; name = "Complex Modifications";
rules = [ rules = [
@ -353,24 +319,16 @@ let
name = "default"; name = "default";
selected = true; selected = true;
virtual_hid_keyboard.keyboard_type_v2 = "ansi"; virtual_hid_keyboard.keyboard_type_v2 = "ansi";
inherit simple_modifications;
inherit complex_modifications; inherit complex_modifications;
devices = [ devices = [
{
identifiers = {
is_keyboard = true;
is_built_in_keyboard = true;
};
simple_modifications = builtinKeyboardSimpleModifications;
}
{ {
identifiers = logitechG213Identifiers; identifiers = logitechG213Identifiers;
simple_modifications = logitechG213SimpleModifications; simple_modifications = logitechG213SimpleModifications;
} }
{ {
identifiers = logitechMouseIdentifiers; identifiers.is_keyboard = true;
ignore = false;
simple_modifications = logitechMouseSimpleModifications;
} }
]; ];
} }

View file

@ -1,13 +1,14 @@
{ config, lib, ... }: let { config, lib, ... }: let
inherit (lib) mkIf; inherit (lib) mkIf concatStringsSep;
in { in {
services.resolved = mkIf (!config.isServer) { services.resolved = mkIf (!config.isServer) {
enable = true; enable = true;
settings.Resolve = { extraConfig = config.dnsServers
DNS = config.dnsServers; |> map (server: "DNS=${server}")
DNSSEC = true; |> concatStringsSep "\n";
DNSOverTLS = true;
}; dnssec = "true";
dnsovertls = "true";
}; };
} }