NixOS-Vista/nixosVista/homeManager/hyprpaper/default.nix
2026-02-12 15:32:45 +01:00

17 lines
267 B
Nix

{
config,
lib,
nixosVista,
...
}: let
cfg = nixosVista.hyprpaper;
in {
config = lib.mkIf cfg.enable {
services.hyprpaper = {
enable = true;
# Direct passthrough to official Home Manager option
settings = cfg.settings;
};
};
}