fix(ookphone): add special args to home manager

This commit is contained in:
ooks-io 2024-04-20 20:07:37 +12:00
parent b06290c529
commit 0d5711a99a

View file

@ -1,4 +1,4 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, inputs, outputs, ... }:
{ {
# Simply install just the packages # Simply install just the packages
@ -32,6 +32,7 @@
home-manager = { home-manager = {
backupFileExtension = "hm-bak"; backupFileExtension = "hm-bak";
useGlobalPkgs = true; useGlobalPkgs = true;
extraSpecialArgs = { inherit inputs outputs; };
config = import ../../../home/user/ooks/ooksphone; config = import ../../../home/user/ooks/ooksphone;
}; };
} }