nixfiles/roles/hyprland.nix

24 lines
334 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
];
}