WIP: refactor

This commit is contained in:
2025-05-31 13:45:20 -07:00
parent 5116dd160d
commit f3aaac2f4d
13 changed files with 270 additions and 391 deletions

View File

@@ -0,0 +1,16 @@
{ config, lib, pkgs, ... }:
let
cfg = config.opts.desktop;
in
{
options = {
opts.desktop = {
enable = lib.mkEnableOption "desktop environment";
pipewire.enable = lib.mkOption {
type = lib.types.bool;
default = true;
description = "Enable pipewire for audio and screen sharing support";
};
};
};
}