mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 09:23:55 -05:00
23 lines
788 B
Nix
23 lines
788 B
Nix
{ pkgs, lib, config, ... }: {
|
|
|
|
options = {
|
|
desktopEnv.hyprland.hyprpaper.enable =
|
|
lib.mkEnableOption "Enables hyprpaper and assorted wallpapers.";
|
|
};
|
|
|
|
config = lib.mkIf config.desktopEnv.hyprland.hyprpaper.enable {
|
|
|
|
# Packages that should be installed to the user profile.
|
|
home.packages = with pkgs; [ hyprpaper ];
|
|
|
|
xdg.configFile."hypr/hyprpaper.conf".source = ./hyprpaper.conf;
|
|
|
|
xdg.configFile."hypr/wallpapers/greenCity.jpg".source =
|
|
./wallpapers/greenCity.jpg;
|
|
xdg.configFile."hypr/wallpapers/jr-korpa-9XngoIpxcEo-unsplash.jpg".source =
|
|
./wallpapers/jr-korpa-9XngoIpxcEo-unsplash.jpg;
|
|
xdg.configFile."hypr/wallpapers/salty-justice-NOMebOREvtc-unsplash.jpg".source =
|
|
./wallpapers/salty-justice-NOMebOREvtc-unsplash.jpg;
|
|
};
|
|
}
|