Compare commits

..

2 commits

Author SHA1 Message Date
14e8b6a8fd
wezterm: mini refactor
All checks were successful
flake check / check (push) Successful in 11m0s
fmt check / check (push) Successful in 1m1s
2024-01-02 00:08:45 -05:00
95d3f9be93
networking: set dns to cloudflare 2024-01-02 00:08:28 -05:00
2 changed files with 13 additions and 6 deletions

View file

@ -1,6 +1,7 @@
local wezterm = require 'wezterm' local wezterm = require('wezterm')
local config = {
return {
front_end = "WebGpu", front_end = "WebGpu",
webgpu_preferred_adapter = { webgpu_preferred_adapter = {
backend = "Vulkan", backend = "Vulkan",
@ -14,6 +15,12 @@ return {
text_background_opacity = 1.0, text_background_opacity = 1.0,
enable_tab_bar = false, enable_tab_bar = false,
color_scheme = 'tokyonight', color_scheme = 'tokyonight',
window_padding = {
window_padding = { top = 20, bottom = 20, left = 20, right = 20 } top = 20,
bottom = 20,
left = 20,
right = 20
}
} }
return config

View file

@ -1,8 +1,8 @@
{lib, ...}: { {lib, ...}: {
networking = { networking = {
nameservers = [ nameservers = [
"185.12.64.2" "1.1.1.1"
"185.12.64.1" "1.0.0.1"
]; ];
defaultGateway = "172.31.1.1"; defaultGateway = "172.31.1.1";
defaultGateway6 = { defaultGateway6 = {