This commit is contained in:
Bryan Ramos 2023-06-19 09:23:47 -04:00
parent 81ec026bf5
commit 081c2ff814
2 changed files with 8 additions and 1 deletions

View file

@ -9,7 +9,7 @@ return {
transparent = true, transparent = true,
}, },
}) })
vim.cmd("colorscheme github_dark") vim.cmd("colorscheme github_dark_high_contrast")
end, end,
}, },

View file

@ -18,6 +18,12 @@
}; };
environment.systemPackages = with pkgs; [ nix-init pavucontrol ]; environment.systemPackages = with pkgs; [ nix-init pavucontrol ];
# DE
programs.sway = {
enable = true;
package = null;
};
# Fonts # Fonts
fonts.fonts = with pkgs; [ fonts.fonts = with pkgs; [
terminus_font terminus_font
@ -102,6 +108,7 @@
enable = true; enable = true;
startWhenNeeded = true; startWhenNeeded = true;
settings = { settings = {
X11Forwarding = true;
PasswordAuthentication = false; PasswordAuthentication = false;
}; };
}; };