Add starter Hyprland config

This commit is contained in:
NullBite 2024-01-01 03:08:15 -05:00
parent e4671a839e
commit f3d8848a5c
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

23
roles/hyprland.nix Normal file
View File

@ -0,0 +1,23 @@
{ 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
];
}