blob: 82be90c726d5c2a16a355b5ecf9dd9538e1e9f77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
{ config, flakeInputs, pkgs, lib, userName, customUtils, ... }:
{
home-manager.users.${userName} = {...}: {
imports = [
(customUtils.overrideModuleArgs
(import ./module.nix)
(inputs: inputs // { inherit flakeInputs; inherit (config.nixpkgs) system; })
)
];
};
}
|