cleaned dead config

This commit is contained in:
Steven 2023-08-02 06:01:26 -04:00
parent 5bae6c9d0e
commit 4d8cb7e83d
15 changed files with 87 additions and 147 deletions

View file

@ -1,11 +1,29 @@
{ config, pkgs, lib, ... }:
{
environment.systemPackages = with pkgs; [
libsForQt5.polkit-kde-agent
libsForQt5.qt5.qtwayland
qt6.qtwayland
waybar
swww
pw-volume
];
programs.hyprland = {
enable = true;
nvidiaPatches = true;
xwayland.enable = true;
};
environment = {
systemPackages = with pkgs; [
libsForQt5.polkit-kde-agent
libsForQt5.qt5.qtwayland
qt6.qtwayland
waybar
swww
pw-volume
rofi-wayland
libnotify
mako
];
sessionVariables = {
WLR_NO_HARDWARE_CURSORS = "1";
NIXOS_OZONE_WL = "1";
};
};
hardware = {
# opengl.enable = true;
nvidia.modesetting.enable = true;
};
}