Incorporate omarchy-nix.
This commit is contained in:
@@ -1,13 +1,31 @@
|
||||
# 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
|
||||
foot # Wayland-native terminal emulator
|
||||
wofi # Application launcher for Wayland
|
||||
nautilus
|
||||
blueberry
|
||||
libnotify
|
||||
];
|
||||
in
|
||||
{
|
||||
packages = workstationProfile.packages ++ desktopPkgs;
|
||||
packages = workstationProfile.packages ++ hyprlandPkgs ++ desktopPkgs;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user