nix-da/options/system/roles/desktop.nix

9 lines
159 B
Nix

{ lib, ... }:
let
inherit (lib) mkEnableOption;
in
{
options.modules.system.roles.desktop = {
enable = mkEnableOption "desktop usage features";
};
}