stockholm/krebs/3modules/upstream/desktop-managers/none.nix

12 lines
320 B
Nix
Raw Normal View History

2023-06-10 10:50:53 +00:00
{ lib, ... }:
# Replace upstream none desktop-manager by a real none, that doesn't pull in
# any dependencies.
{
2023-06-10 10:50:53 +00:00
disabledModules = lib.singleton "services/x11/desktop-managers/none.nix";
config.services.xserver.desktopManager.session = lib.singleton {
name = "none";
bgSupport = true;
start = "";
};
}