13 lines
201 B
Nix
13 lines
201 B
Nix
{
|
|
config,
|
|
lig,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
in {
|
|
# These are packages I only need in wayland environments, nowhere else.
|
|
environment.systemPackages = with pkgs; [
|
|
wl-clipboard
|
|
grimblast
|
|
];
|
|
}
|