15 lines
379 B
Nix
15 lines
379 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [
|
|
cliphist # clipboard manager (history)
|
|
grim # needed for screenshots/flameshot
|
|
slurp # needed for screenshots
|
|
swww # wallpaper daemon
|
|
wl-clipboard # clipboard manager (tools)
|
|
#xdg-desktop-portal
|
|
#xdg-desktop-portal-hyprland
|
|
#xdg-desktop-portal-gtk
|
|
];
|
|
}
|