.hive/modules/home/wallpaper.nix

17 lines
292 B
Nix

{
config,
lib,
...
}: let
cfg = config.hive.wallpaper;
in {
options.hive.wallpaper.enable = lib.mkEnableOption "Wallpaper symlink";
config = lib.mkIf cfg.enable {
home.file.".local/share/wallpaper" = {
source = ./static/wallpaper;
recursive = true;
};
};
}