nixfiles/system/hyprland.nix
NullBite 752a145bb5
Make some hyprland changes
- switch from wofi to rofi-wayland
- enable polkit kde agent
- add brightnessctl to env
2024-02-02 15:32:40 +01:00

25 lines
355 B
Nix

{ lib, pkgs, config, ... }:
{
imports = [
./desktop-common.nix
];
programs.hyprland = {
enable = true;
enableNvidiaPatches = true;
xwayland.enable = true;
};
environment.systemPackages = with pkgs; [
kitty
dunst
polkit-kde-agent
eww
hyprpaper
rofi
hyprpicker
udiskie
polkit-kde-agent
];
}