Files
alo-cluster/home/profiles/desktop.nix
2026-01-01 16:44:09 +00:00

32 lines
624 B
Nix

# ABOUTME: Desktop profile package list
# ABOUTME: Extends workstation with GUI and Wayland tools
{ pkgs }:
let
workstationProfile = import ./workstation.nix { inherit pkgs; };
# Hyprland ecosystem packages
hyprlandPkgs = with pkgs; [
hyprshot
hyprpicker
hyprsunset
brightnessctl
pamixer
playerctl
gnome-themes-extra
pavucontrol
wl-clip-persist
clipse
];
# Desktop GUI applications
desktopPkgs = with pkgs; [
browser-previews.google-chrome
nautilus
blueberry
libnotify
];
in
{
packages = workstationProfile.packages ++ hyprlandPkgs ++ desktopPkgs;
}