From 081c2ff8147fe0b009d14e07aec910d94bdf47a0 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Mon, 19 Jun 2023 09:23:47 -0400 Subject: [PATCH] pls fix --- .../modules/neovim/config/lazyvim/lua/plugins/core.lua | 2 +- sysConfig/desktop/system.nix | 7 +++++++ 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua index f80dcb1..c16f6fe 100644 --- a/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua +++ b/homeConfig/modules/neovim/config/lazyvim/lua/plugins/core.lua @@ -9,7 +9,7 @@ return { transparent = true, }, }) - vim.cmd("colorscheme github_dark") + vim.cmd("colorscheme github_dark_high_contrast") end, }, diff --git a/sysConfig/desktop/system.nix b/sysConfig/desktop/system.nix index 6311a2c..4e41973 100644 --- a/sysConfig/desktop/system.nix +++ b/sysConfig/desktop/system.nix @@ -18,6 +18,12 @@ }; environment.systemPackages = with pkgs; [ nix-init pavucontrol ]; +# DE + programs.sway = { + enable = true; + package = null; + }; + # Fonts fonts.fonts = with pkgs; [ terminus_font @@ -102,6 +108,7 @@ enable = true; startWhenNeeded = true; settings = { + X11Forwarding = true; PasswordAuthentication = false; }; };