nixpkgs/nixos/modules/services/x11/window-managers/none.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
160 B
Nix
Raw Normal View History

2020-04-02 08:07:18 +00:00
{
services = {
xserver = {
windowManager = {
session = [{
name = "none";
start = "";
}];
};
};
};
}