mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 21:23:55 -05:00
27 lines
613 B
Nix
27 lines
613 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
imports = [./hyprpaper-random.nix];
|
|
|
|
options = {
|
|
alyraffauf.desktop.hyprland.hyprpaper.enable =
|
|
lib.mkEnableOption "Enables hyprpaper and assorted wallpapers.";
|
|
};
|
|
|
|
config = lib.mkIf config.alyraffauf.desktop.hyprland.hyprpaper.enable {
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [hyprpaper];
|
|
|
|
xdg.configFile."hypr/hyprpaper.conf".text = ''
|
|
preload = ${config.alyraffauf.desktop.theme.wallpaper}
|
|
|
|
wallpaper = ,${config.alyraffauf.desktop.theme.wallpaper}
|
|
|
|
splash = false
|
|
'';
|
|
};
|
|
}
|