14 lines
201 B
Nix
14 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
|
||
|
];
|
||
|
}
|