summaryrefslogtreecommitdiff
path: root/modules/envfs.nix
blob: 638d1a05bc64371139295ec44f2f03201206e57d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{ config, lib, ... }:

{
  options = {
    this.envfs.enable = lib.mkEnableOption "envfs";
  };

  config = lib.mkIf config.this.envfs.enable {
    services.envfs.enable = true;
    environment.variables.ENVFS_RESOLVE_ALWAYS = 1;
  };
}