sneeuwvlok/_modules/home/desktop/default.nix
2025-07-28 14:34:09 +02:00

10 lines
180 B
Nix

{ lib, user, ... }:
let
inherit (lib.types) either str;
inherit (lib.my) mkOpt;
in
{
options.modules.${user}.desktop = {
type = mkOpt (either str null) "wayland";
};
}