From f3d8848a5ce284e2fdd4c586747c3d6404e8d98f Mon Sep 17 00:00:00 2001 From: NullBite Date: Mon, 1 Jan 2024 03:08:15 -0500 Subject: [PATCH] Add starter Hyprland config --- roles/hyprland.nix | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 roles/hyprland.nix diff --git a/roles/hyprland.nix b/roles/hyprland.nix new file mode 100644 index 0000000..dd4d29b --- /dev/null +++ b/roles/hyprland.nix @@ -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 + ]; +}