diff --git a/config/hosts/thelio76/default.nix b/config/hosts/thelio76/default.nix index 201b9bf..d16def1 100644 --- a/config/hosts/thelio76/default.nix +++ b/config/hosts/thelio76/default.nix @@ -13,6 +13,10 @@ boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-amd" ]; + boot.kernelParams = [ + "video=DP-2:1920x1080@60" + "video=HDMI-1:1920x1080@60" + ]; boot.extraModulePackages = [ ]; boot.initrd.luks.devices."luks-b748a776-5e2c-4809-927e-1f4c051b9460".device = "/dev/disk/by-uuid/b748a776-5e2c-4809-927e-1f4c051b9460"; diff --git a/config/modules/bspwm/polybar.nix b/config/modules/bspwm/polybar.nix index 03a4096..c0ba809 100644 --- a/config/modules/bspwm/polybar.nix +++ b/config/modules/bspwm/polybar.nix @@ -57,6 +57,8 @@ monitor = "HDMI-1"; modules-left = "xworkspaces"; modules-center = "date"; + + modules-right = "systray"; }; "module/xworkspaces" = { diff --git a/config/modules/system76-pc.nix b/config/modules/system76-pc.nix index fffe461..c856c43 100644 --- a/config/modules/system76-pc.nix +++ b/config/modules/system76-pc.nix @@ -57,6 +57,7 @@ # List packages installed in system profile. To search, run: environment.systemPackages = with pkgs; [ + cacert direnv dxvk envsubst @@ -68,6 +69,8 @@ # Hardware hardware.graphics.enable = true; + hardware.graphics.driSupport32Bit = true; # For 32 bit applications + hardware.graphics.extraPackages = [ pkgs.intel-media-driver ];