.dotfiles/.config/home-manager/wayland.nix
2023-07-06 23:38:19 +02:00

13 lines
303 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)
];
}