diff options
| author | brustybee <bee@4d2.org> | 2026-03-07 05:10:56 +0530 |
|---|---|---|
| committer | brustybee <bee@4d2.org> | 2026-03-07 05:10:56 +0530 |
| commit | 20bb620ba13e9dd2617782fd8b48f02abed9d2ad (patch) | |
| tree | 5d93312e4d3a70f84352d114e0c95e9af62f3836 /common/modules/terminal | |
| parent | ff3198ee65f1c217d51be133816a76c0648afcd7 (diff) | |
Fix modules to properly guard HM-only config from NixOS evaluatio
Diffstat (limited to 'common/modules/terminal')
| -rw-r--r-- | common/modules/terminal/default.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/common/modules/terminal/default.nix b/common/modules/terminal/default.nix index b8f97c2..fea6bc7 100644 --- a/common/modules/terminal/default.nix +++ b/common/modules/terminal/default.nix @@ -11,11 +11,8 @@ ... }: with lib; -let - cfg = config.${moduleNameSpace}.terminal; -in { - imports = [ + imports = lib.optionals homeManager [ (import ./foot.nix { inherit lib config; }) (import ./ghostty.nix { inherit lib config; }) (import ./alacritty.nix { inherit lib config; }) |
