mirror of
https://github.com/XNM1/linux-nixos-hyprland-config-dotfiles.git
synced 2025-09-15 09:45:58 +03:00
29 lines
425 B
Nix
29 lines
425 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
# Enable Hyprland
|
|
programs.hyprland.enable = true;
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
environment.sessionVariables.WLR_NO_HARDWARE_CURSORS = "1";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pyprland
|
|
hyprpicker
|
|
hyprcursor
|
|
hyprlock
|
|
hypridle
|
|
hyprpaper
|
|
|
|
wezterm
|
|
cool-retro-term
|
|
|
|
starship
|
|
helix
|
|
|
|
qutebrowser
|
|
zathura
|
|
mpv
|
|
imv
|
|
];
|
|
}
|