feat: Compile Plasma Bigscreen against the development repo as of February 13, 2026
This commit is contained in:
63
sw/bigscreen/default.nix
Normal file
63
sw/bigscreen/default.nix
Normal file
@@ -0,0 +1,63 @@
|
||||
# ============================================================================
|
||||
# Bigscreen Software Configuration
|
||||
# ============================================================================
|
||||
# Imports desktop-specific programs and services (KDE Plasma, CUPS, etc.)
|
||||
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
inputs,
|
||||
...
|
||||
}:
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
cfg = config.athenix.sw.bigscreen;
|
||||
in
|
||||
{
|
||||
options.athenix.sw.bigscreen = mkOption {
|
||||
type = lib.types.submodule {
|
||||
options = {
|
||||
enable = mkOption {
|
||||
type = lib.types.bool;
|
||||
default = false;
|
||||
description = ''
|
||||
Enable full desktop environment with KDE Plasma 6 Bigscreen.
|
||||
|
||||
Includes:
|
||||
- KDE Plasma 6 desktop with SDDM display manager
|
||||
- Printing and scanning support (CUPS)
|
||||
- Virtualization (libvirt, virt-manager)
|
||||
- Bluetooth and audio (PipeWire)
|
||||
|
||||
Recommended for: home theater PCs, media centers, and large-screen desktops.
|
||||
'';
|
||||
example = true;
|
||||
};
|
||||
};
|
||||
};
|
||||
default = { };
|
||||
description = "Desktop environment configuration (KDE Plasma 6).";
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable (mkMerge [
|
||||
(import ./programs.nix {
|
||||
inherit
|
||||
config
|
||||
lib
|
||||
pkgs
|
||||
inputs
|
||||
;
|
||||
})
|
||||
(import ./services.nix {
|
||||
inherit
|
||||
config
|
||||
lib
|
||||
pkgs
|
||||
inputs
|
||||
;
|
||||
})
|
||||
]);
|
||||
}
|
||||
Reference in New Issue
Block a user