25 lines
400 B
Nix
25 lines
400 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
./hyprland.nix
|
|
./hyprlock.nix
|
|
./hypridle.nix
|
|
./quickshell.nix
|
|
];
|
|
|
|
home.packages = with pkgs; [
|
|
# Utilities & Tools
|
|
grim
|
|
slurp
|
|
wl-clipboard
|
|
cliphist
|
|
brightnessctl
|
|
|
|
# Desktop Environment / Hyprland ecosystem
|
|
hyprpaper
|
|
rofi
|
|
hyprpolkitagent
|
|
];
|
|
}
|