47 lines
671 B
Nix
47 lines
671 B
Nix
{pkgs, ...}: {
|
|
# Not working on phoenix for some reason
|
|
programs.hyprland.enable = true;
|
|
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
environment.sessionVariables.WLR_NO_HARDWARE_CURSORS = "1";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
pyprland
|
|
hyprpicker
|
|
hyprcursor
|
|
|
|
wezterm
|
|
cool-retro-term
|
|
|
|
starship
|
|
helix
|
|
|
|
#qutebrowser
|
|
zathura
|
|
mpv
|
|
imv
|
|
|
|
neofetch
|
|
onefetch
|
|
ipfetch
|
|
cpufetch
|
|
ramfetch
|
|
starfetch
|
|
octofetch
|
|
htop
|
|
bottom
|
|
btop
|
|
zfxtop
|
|
kmon
|
|
|
|
# vulkan-tools
|
|
# opencl-info
|
|
# clinfo
|
|
# vdpauinfo
|
|
# libva-utils
|
|
# nvtop
|
|
dig
|
|
speedtest-rs
|
|
];
|
|
}
|