This commit is contained in:
2025-12-07 17:25:31 +00:00
parent 3370e9856a
commit 621e38aa79
62 changed files with 2425 additions and 2370 deletions

View File

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