Files
nixos-config/modules/darwin/home/default.nix
Christoph Schmatzler 28bedadc16 up
Signed-off-by: Christoph Schmatzler <christoph@schmatzler.com>
2025-08-16 19:13:38 +00:00

22 lines
418 B
Nix

{
pkgs,
lib,
...
}: let
setWallpaperScript = import ../bin/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
'';
};
};
}