10 lines
170 B
Nix
10 lines
170 B
Nix
|
{pkgs, ...}: {
|
||
|
home.sessionVariables = {
|
||
|
NIXOS_OZONE_WL = "1"; # let electron applications use wayland
|
||
|
};
|
||
|
|
||
|
home.packages = with pkgs; [
|
||
|
wl-clipboard
|
||
|
];
|
||
|
}
|