2023-06-30 18:47:01 +00:00
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
# Packages that should be installed to the user profile.
|
|
|
|
home.packages = with pkgs; [
|
2023-07-01 14:36:44 +00:00
|
|
|
cliphist # clipboard manager (history)
|
2023-06-30 18:47:01 +00:00
|
|
|
grim # needed for screenshots/flameshot
|
2023-07-06 21:38:19 +00:00
|
|
|
slurp # needed for screenshots
|
2023-07-01 14:36:44 +00:00
|
|
|
wl-clipboard # clipboard manager (tools)
|
2023-09-10 19:41:00 +00:00
|
|
|
#xdg-desktop-portal
|
|
|
|
#xdg-desktop-portal-hyprland
|
|
|
|
#xdg-desktop-portal-gtk
|
2023-06-30 18:47:01 +00:00
|
|
|
];
|
|
|
|
}
|