Compare commits
No commits in common. "14e8b6a8fdcc1064cb462339bd55cbc02b204588" and "36bbb8603a0456aeceee5054d4882ea403178e9d" have entirely different histories.
14e8b6a8fd
...
36bbb8603a
2 changed files with 6 additions and 13 deletions
|
@ -1,7 +1,6 @@
|
||||||
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",
|
||||||
|
@ -15,12 +14,6 @@ local config = {
|
||||||
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 = {
|
|
||||||
top = 20,
|
|
||||||
bottom = 20,
|
|
||||||
left = 20,
|
|
||||||
right = 20
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return config
|
window_padding = { top = 20, bottom = 20, left = 20, right = 20 }
|
||||||
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
{lib, ...}: {
|
{lib, ...}: {
|
||||||
networking = {
|
networking = {
|
||||||
nameservers = [
|
nameservers = [
|
||||||
"1.1.1.1"
|
"185.12.64.2"
|
||||||
"1.0.0.1"
|
"185.12.64.1"
|
||||||
];
|
];
|
||||||
defaultGateway = "172.31.1.1";
|
defaultGateway = "172.31.1.1";
|
||||||
defaultGateway6 = {
|
defaultGateway6 = {
|
||||||
|
|
Loading…
Reference in a new issue