2023-06-10 10:50:53 +00:00
|
|
|
{ lib, ... }:
|
2021-01-25 00:42:51 +00:00
|
|
|
# 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 {
|
2021-01-25 00:42:51 +00:00
|
|
|
name = "none";
|
|
|
|
bgSupport = true;
|
|
|
|
start = "";
|
|
|
|
};
|
|
|
|
}
|