nix machine / user configurations
at terra 368 B view raw
1{ pkgs, ... }: 2{ 3 home.packages = with pkgs; [ 4 wl-clipboard 5 ]; 6 7 home.sessionVariables = { 8 NIXOS_OZONE_WL = "1"; 9 MOZ_ENABLE_WAYLAND = "1"; 10 XDG_SESSION_TYPE = "wayland"; 11 }; 12 13 xdg.configFile = { 14 "environment.d/10-apply-wayland-env.conf".text = '' 15 NIXOS_OZONE_WL=1 16 MOZ_ENABLE_WAYLAND=1 17 XDG_SESSION_TYPE=wayland 18 ''; 19 }; 20}