Files
nix-config/modules/nixos/desktop/cosmic/default.nix
mjallen18 7fcbd0bb7c plasma
2026-03-25 18:23:08 -05:00

21 lines
468 B
Nix
Executable File

{
lib,
namespace,
...
}:
{
options.${namespace}.desktop.cosmic = {
enable = lib.mkEnableOption "enable cosmic settings";
};
# TODO: COSMIC DE has an active bug that prevents it from being used.
# Re-enable once upstream fixes land:
# config = lib.mkIf config.${namespace}.desktop.cosmic.enable {
# services = {
# desktopManager.cosmic.enable = true;
# displayManager.cosmic-greeter.enable = true;
# };
# };
config = { };
}