nichts/modules/packages/wayland.nix

16 lines
240 B
Nix
Raw Permalink Normal View History

2024-09-23 18:54:14 +02:00
{
config,
2025-04-06 22:45:09 +02:00
lib,
2024-09-23 18:54:14 +02:00
pkgs,
...
2025-04-06 22:45:09 +02:00
}: {
2024-09-23 18:54:14 +02:00
# These are packages I only need in wayland environments, nowhere else.
2025-04-06 22:45:09 +02:00
environment.systemPackages = builtins.attrValues {
inherit
(pkgs)
wl-clipboard
grimblast
;
};
2024-09-23 18:54:14 +02:00
}