add wallpapers

This commit is contained in:
2025-11-12 22:11:01 -06:00
parent 1c963f5563
commit 3047ff97b4
9 changed files with 31 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 23 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.1 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 297 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

View File

@@ -19,6 +19,7 @@ in {
./bitwarden
./zathura
./discord
./yt-dlp
];
@@ -40,6 +41,7 @@ in {
bitwarden.enable = lib.mkDefault true;
discord.enable = lib.mkDefault true;
zathura.enable = lib.mkDefault true;
yt-dlp.enable = lib.mkDefault true;
};
};
}

View File

@@ -0,0 +1,27 @@
{
pkgs,
lib,
config,
...
}: let
program = "yt-dlp";
cfg = config.dots.${program};
in {
options.dots.${program} = {
enable = lib.mkEnableOption "enables ${program}";
};
config = lib.mkIf cfg.enable {
# enable with home-manager
programs.${program} = {
enable = true;
settings = {
embed-thumbnail = true;
embed-subs = true;
sub-langs = "all";
};
};
};
}

View File

@@ -14,7 +14,8 @@
dots = {
stylix = {
enable = true;
wallpaper = ../assets/wallpapers/yveltal.jpg;
#wallpaper = ../assets/wallpapers/yveltal.jpg;
wallpaper = ../assets/wallpapers/hairpin.png;
};
programs.enable = true;