summary refs log tree commit diff
path: root/nixos/modules/services/x11/window-managers/none.nix
blob: 84cf1d770776838682327f03362a72d2130db965 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{
  services = {
    xserver = {
      windowManager = {
        session = [{
          name = "none";
          start = "";
        }];
      };
    };
  };
}