This commit is contained in:
Bryan Ramos 2023-03-22 00:11:44 -04:00
commit a79fc67d37
647 changed files with 123931 additions and 0 deletions

58
sysConfig/gui.nix Normal file
View file

@ -0,0 +1,58 @@
{ config, pkgs, lib, ... }:
{
# DESKTOP
programs.sway.enable = true;
environment.systemPackages = with pkgs; [
rofi-wayland
grim
slurp
mako
wl-clipboard
xdg-desktop-portal
xdg-desktop-portal-wlr
fontconfig
];
# CONSOLE
console = {
font = "Lat2-Terminus16";
useXkbConfig = true;
};
# FONTS
fonts = {
fonts = with pkgs; [
terminus_font
nerdfonts
noto-fonts
noto-fonts-cjk
emojione
];
};
# GPU DRIVERS
# boot.initrd.kernelModules = [ "amdgpu" ]; #Uncomment for AMD
hardware.nvidia.open = true; # Uncomment for nvidia open-source nouveau drivers
# services.xserver.videoDrivers = [ "nvidia" ]; # Uncomment
# hardware = { # this
# opengl.enable = true; # codeblock
# nvidia = { # for
# package = config.boot.kernelPackages.nvidiaPackages.stable; # NVIDIA
# modesetting.enable = true; # proprietary
# }; # driver
# }; # support
}