Files
nix-config/modules/nixos/desktop/hyprland/options.nix
2025-08-26 20:28:55 -05:00

17 lines
332 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)";
};
};
}