mirror of
https://github.com/nickolaj-jepsen/nixos.git
synced 2026-01-22 16:16:50 +01:00
26 lines
565 B
Nix
26 lines
565 B
Nix
{
|
|
config,
|
|
lib,
|
|
...
|
|
}: {
|
|
options.fireproof.desktop = {
|
|
enable = lib.mkEnableOption "Enable desktop environment with niri, greetd, and all desktop features";
|
|
windowManager.enable = lib.mkOption {
|
|
type = lib.types.bool;
|
|
default = config.fireproof.desktop.enable;
|
|
description = "Enable window manager (niri) and dank material shell (dms)";
|
|
};
|
|
};
|
|
|
|
imports = [
|
|
./monitors.nix
|
|
./audio.nix
|
|
./fonts.nix
|
|
./greetd.nix
|
|
./niri.nix
|
|
./qt.nix
|
|
./screenshot.nix
|
|
./gtk/default.nix
|
|
./dms/default.nix
|
|
];
|
|
}
|