15 lines
240 B
Nix
15 lines
240 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
# These are packages I only need in wayland environments, nowhere else.
|
|
environment.systemPackages = builtins.attrValues {
|
|
inherit
|
|
(pkgs)
|
|
wl-clipboard
|
|
grimblast
|
|
;
|
|
};
|
|
}
|