dotfiles/modules/de_gnome_wayland.nix
RingOfStorms (Joshua Bell) bb8033d547 cosmic module
2024-10-10 14:12:31 -05:00

21 lines
303 B
Nix

{
config,
lib,
...
}:
with lib;
let
name = "de_gnome_wayland";
cfg = config.my_modules.${name};
in
{
options = {
my_modules.${name} = {
enable = mkEnableOption (lib.mdDoc "Enable GNOME with wayland desktop environment");
};
};
config = mkIf cfg.enable {
# TODO
};
}