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

12 lines
271 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
swww # wallpaper daemon
wl-clipboard # clipboard manager (tools)
2023-06-30 18:47:01 +00:00
];
}