wallpapers

This commit is contained in:
martyTF 2025-12-18 19:22:25 +01:00
parent 4280614fe8
commit 3055adfe61
5 changed files with 26 additions and 0 deletions

View file

@ -10,5 +10,6 @@
./hyprland.nix
./walker.nix
./waybar.nix
./wallpaper.nix
];
}

View file

@ -0,0 +1,22 @@
{
config,
pkgs,
inputs,
lib,
...
}:
{
options = {
window_manager = {
wallpaper.enable = lib.mkEnableOption "enable wallpapers";
};
};
config = lib.mkIf config.window_manager.wallpaper.enable {
home.packages = with pkgs; [
waypaper
swww
];
};
}