mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-24 00:29:43 -04:00
Initial
This commit is contained in:
commit
a79fc67d37
647 changed files with 123931 additions and 0 deletions
58
sysConfig/gui.nix
Normal file
58
sysConfig/gui.nix
Normal 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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue