Personal-use NixOS configuration
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at main 13 lines 176 B view raw
1{ pkgs, ... }: 2 3{ 4 environment.sessionVariables.NIXOS_OZONE_WL = "1"; 5 6 services.xserver = { 7 enable = true; 8 9 excludePackages = with pkgs; [ 10 xterm 11 ]; 12 }; 13}