Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
This commit is contained in:
2025-08-16 17:57:30 +00:00
parent c956810e3c
commit 52549832bc
6 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,23 @@
{
pkgs,
config,
lib,
constants,
...
}: let
setWallpaperScript = import ../lib/wallpaper.nix {inherit pkgs;};
in {
imports = [
./ghostty.nix
];
home = {
packages = pkgs.callPackage ../packages.nix {};
activation = {
"setWallpaper" = lib.hm.dag.entryAfter ["revealHomeLibraryDirectory"] ''
echo "[+] Setting wallpaper"
${setWallpaperScript}/bin/set-wallpaper-script
'';
};
};
}