Files
nix-config/modules/desktop-environments/hyprland/environment.nix
mjallen18 0211f0a415 fixes
2025-06-18 23:45:34 -05:00

67 lines
1.2 KiB
Nix
Executable File

{ pkgs, ... }:
let
waybarWeatherScript = pkgs.writeScriptBin "waybar-weather" ''
/home/matt/.config/waybar/scripts/waybar-wttr.py
'';
waybarUpdatesScript = pkgs.writeScriptBin "waybar-updates" ''
/home/matt/.config/waybar/scripts/waybar-updates.py
'';
in
{
environment.systemPackages = with pkgs; [
unstable.adwaita-icon-theme
apple-cursor
catppuccin-sddm
colloid-gtk-theme
colloid-icon-theme
ddcutil
dunst
egl-wayland
unstable.file-roller
glib
gnome-tweaks
gnome-disk-utility
gnome-font-viewer
gnome-system-monitor
gsettings-desktop-schemas
hyprcursor
hyprland
hyprshot
libnotify
mako
meson
unstable.nautilus
networkmanagerapplet
nm-tray
nwg-drawer
nwg-look
pamixer
papirus-folders
pavucontrol
playerctl
polkit
polkit_gnome
qt5.qtwayland
qt6.qtwayland
rocmPackages.rocm-smi
rofi-wayland
waybar
waybarUpdatesScript
waybarWeatherScript
wayland-protocols
wayland-utils
wev
wl-clipboard
wlogout
wlroots
xdg-desktop-portal-hyprland
xdg-desktop-portal-gtk
xdg-desktop-portal-wlr
xorg.xhost
xsettingsd
xwayland
];
}