Files
nix-config/modules/nixos/desktop/hyprland/options.nix
mjallen18 d6e7be7db1 cleanup
2025-08-22 21:13:05 -05:00

14 lines
314 B
Nix

{ lib, ... }:
with lib;
{
options.mjallen.desktop.hyprland = {
enable = mkEnableOption "enable hyprland desktop environment";
wallpaperSource = mkOption {
type = types.enum [ "bing" "nasa" ];
default = "bing";
description = "Source for the wallpaper (bing or nasa)";
};
};
}