mirror of
https://github.com/Username404-59/Dotfiles-NixOS.git
synced 2026-07-03 12:58:07 +02:00
Pass localPackagesOverlay to home-manager
This commit is contained in:
parent
58a1052365
commit
402cc98e9b
@ -115,7 +115,7 @@ in
|
||||
};
|
||||
|
||||
home-manager.extraSpecialArgs = {
|
||||
inherit nixtamal;
|
||||
inherit nixtamal localPackagesOverlay;
|
||||
};
|
||||
home-manager.users.doggo = import ./home/doggo/doggo.nix;
|
||||
|
||||
|
||||
@ -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; [
|
||||
|
||||
@ -37,10 +37,10 @@ rustPlatform.buildRustPackage {
|
||||
];
|
||||
|
||||
meta = {
|
||||
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;
|
||||
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;
|
||||
mainProgram = "murale";
|
||||
maintainers = with lib.maintainers; [ Username404-59 ];
|
||||
};
|
||||
|
||||
Loading…
Reference in New Issue
Block a user