feat(nix): add desktop module and refactor machine options

This commit is contained in:
Mohammad Rafiq 2025-07-07 21:48:12 +08:00
parent 4c82720251
commit 8166894b78
No known key found for this signature in database
3 changed files with 12 additions and 16 deletions

View file

@ -0,0 +1,7 @@
{ lib, ... }:
let
inherit (lib.options) mkEnableOption;
in
{
flake.modules.nixos.default.options.desktop.enable = mkEnableOption "";
}