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