22 lines
402 B
Nix
22 lines
402 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs.hyprland = {
|
|
enable = true;
|
|
#xwayland.enable = true;
|
|
};
|
|
programs.hyprlock.enable = true;
|
|
services.hypridle.enable = true;
|
|
programs.thunar.enable = true;
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
hyprcursor
|
|
waybar
|
|
rofi-wayland
|
|
swaynotificationcenter
|
|
swww
|
|
pywal
|
|
emote
|
|
];
|
|
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
}
|