Pass localPackagesOverlay to home-manager

This commit is contained in:
Username404-59 2026-06-28 21:14:12 +02:00
parent 58a1052365
commit 402cc98e9b
Signed by: Username404-59
GPG Key ID: F3A1878B14F5F0D7
3 changed files with 7 additions and 6 deletions

View File

@ -115,7 +115,7 @@ in
};
home-manager.extraSpecialArgs = {
inherit nixtamal;
inherit nixtamal localPackagesOverlay;
};
home-manager.users.doggo = import ./home/doggo/doggo.nix;

View File

@ -1,4 +1,4 @@
{ config, pkgs, nixtamal, functions, ... }:
{ config, pkgs, nixtamal, functions, localPackagesOverlay, ... }:
{
home.username = "doggo";
@ -21,6 +21,7 @@
nixpkgs.overlays = [
(import nixtamal.dolphin-overlay)
(import nixtamal.nix-citizen).overlays.default
localPackagesOverlay
];
home.packages = with pkgs; [

View File

@ -37,7 +37,7 @@ rustPlatform.buildRustPackage {
];
meta = {
description = "Lean, memory-safe video wallpaper player for Wayland compositors ";
description = "Lean, memory-safe video wallpaper player for Wayland compositors";
homepage = "https://github.com/brenton-keller/murale";
license = lib.licenses.mit;
platforms = lib.platforms.linux;