2025-12-12 04:02:55 +01:00
|
|
|
{
|
|
|
|
|
config,
|
|
|
|
|
lib,
|
|
|
|
|
...
|
|
|
|
|
}: {
|
|
|
|
|
options.fireproof.desktop = {
|
|
|
|
|
enable = lib.mkEnableOption "Enable desktop environment with niri, greetd, and all desktop features";
|
2025-12-14 04:09:59 +01:00
|
|
|
windowManager.enable = lib.mkOption {
|
|
|
|
|
type = lib.types.bool;
|
|
|
|
|
default = config.fireproof.desktop.enable;
|
|
|
|
|
description = "Enable window manager (niri) and dank material shell (dms)";
|
|
|
|
|
};
|
2025-12-12 04:02:55 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
imports = [
|
|
|
|
|
./monitors.nix
|
|
|
|
|
./audio.nix
|
|
|
|
|
./fonts.nix
|
|
|
|
|
./greetd.nix
|
2026-01-21 00:10:58 +01:00
|
|
|
./niri
|
2025-12-12 04:02:55 +01:00
|
|
|
./qt.nix
|
2026-01-21 00:07:34 +01:00
|
|
|
./gtk.nix
|
2025-12-12 04:02:55 +01:00
|
|
|
./dms/default.nix
|
|
|
|
|
];
|
|
|
|
|
}
|