tux/weckyy702: Add orly book covers to randomized background list

This commit is contained in:
2026-04-18 03:32:09 +02:00
parent 3c3e253d35
commit c6f03484a6
3 changed files with 51 additions and 12 deletions
Generated
+17
View File
@@ -326,6 +326,22 @@
"type": "github" "type": "github"
} }
}, },
"orly-covers": {
"flake": false,
"locked": {
"lastModified": 1482210547,
"narHash": "sha256-3uU/RbOCZQS8kFu74zHpsHilQoaz9Jhv3vluI9axVPk=",
"owner": "thepracticaldev",
"repo": "orly-full-res",
"rev": "15c2b8dc906a7027391c11f559249c57e1a0a056",
"type": "github"
},
"original": {
"owner": "thepracticaldev",
"repo": "orly-full-res",
"type": "github"
}
},
"root": { "root": {
"inputs": { "inputs": {
"agenix": "agenix", "agenix": "agenix",
@@ -339,6 +355,7 @@
"nixpkgs": "nixpkgs", "nixpkgs": "nixpkgs",
"nixpkgs-unstable": "nixpkgs-unstable", "nixpkgs-unstable": "nixpkgs-unstable",
"nixvim": "nixvim", "nixvim": "nixvim",
"orly-covers": "orly-covers",
"rust-overlay": "rust-overlay", "rust-overlay": "rust-overlay",
"secrets": "secrets", "secrets": "secrets",
"spicetify-nix": "spicetify-nix", "spicetify-nix": "spicetify-nix",
+4
View File
@@ -36,6 +36,10 @@
url = "github:nix-community/nixvim/nixos-25.11"; url = "github:nix-community/nixvim/nixos-25.11";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
}; };
orly-covers = {
url = "github:thepracticaldev/orly-full-res";
flake = false;
};
rust-overlay = { rust-overlay = {
url = "github:oxalica/rust-overlay"; url = "github:oxalica/rust-overlay";
inputs.nixpkgs.follows = "nixpkgs"; inputs.nixpkgs.follows = "nixpkgs";
+30 -12
View File
@@ -4,18 +4,36 @@
url = "github:cat-milk/Anime-Girls-Holding-Programming-Books"; url = "github:cat-milk/Anime-Girls-Holding-Programming-Books";
flake = false; flake = false;
}; };
orly-covers = {
url = "github:thepracticaldev/orly-full-res";
flake = false;
};
}; };
flake.modules.homeManager.randomized-aghpb-wallpaper = { flake.modules.homeManager.randomized-aghpb-wallpaper = { pkgs, ... }:
imports = with inputs.self.factory; [ let
(wpaperd { combined_wallpapers = pkgs.symlinkJoin {
default = { name = "joined-wallpapers";
path = inputs.aghpb; paths = with inputs; [
recursive = true; aghpb
mode = "stretch"; orly-covers
duration = "5m"; ];
}; };
}) in
]; {
}; imports = with inputs.self.factory; [
(wpaperd {
default = {
path = combined_wallpapers;
recursive = true;
mode = "stretch";
duration = "5m";
};
})
];
wayland.windowManager.hyprland.settings.bind = [
"$mod, i, exec, wpaperctl next"
];
};
} }