.dotfiles/.config/home-manager/wayland.nix

13 lines
303 B
Nix
Raw Normal View History

2023-06-30 18:47:01 +00:00
{ config, pkgs, ... }:
{
# Packages that should be installed to the user profile.
home.packages = with pkgs; [
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
swww # wallpaper daemon
wl-clipboard # clipboard manager (tools)
2023-06-30 18:47:01 +00:00
];
}