nixos/modules/system/envfs.nix

13 lines
310 B
Nix
Raw Normal View History

2024-02-01 10:03:15 +08:00
inputs:
{
options.nixos.system.envfs = let inherit (inputs.lib) mkOption types; in
{
enable = mkOption { type = types.bool; default = true; };
};
config = inputs.lib.mkMerge
[
(inputs.topInputs.envfs.nixosModules.envfs inputs)
{ environment.variables.ENVFS_RESOLVE_ALWAYS = "1"; }
];
}