The new profile-based structure (home/base, home/desktop, home/server, home/profiles/, home/coding) is fully operational and imported via home/lib/mkHomeConfig. The legacy home/features directory is no longer referenced anywhere in the configuration. Archived rather than deleted to preserve history for reference.
19 lines
325 B
Nix
19 lines
325 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
with lib; let
|
|
cfg = config.features.desktop.wallpapers;
|
|
in {
|
|
options.features.desktop.wallpapers = mkEnableOption "Wallpapers for Hyprland";
|
|
|
|
config = mkIf cfg {
|
|
xdg.configFile."hypr/wallpapers" = {
|
|
source = ../../m3tam3re/wallpapers;
|
|
recursive = true;
|
|
};
|
|
};
|
|
}
|