diff options
| author | seth <[email protected]> | 2023-08-16 17:46:35 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2023-08-17 13:55:47 -0400 |
| commit | 95ac27788ecb6221867f1a2738ce12b445775bf4 (patch) | |
| tree | c4c8f0f498df7bead55cf80a1e53b01f368eece8 /modules/nixos/base/network.nix | |
| parent | 4fb70765228dd55333844dbb4dfb646a3616893d (diff) | |
modules/nixos+darwin: remove getchoo prefix
Diffstat (limited to 'modules/nixos/base/network.nix')
| -rw-r--r-- | modules/nixos/base/network.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/nixos/base/network.nix b/modules/nixos/base/network.nix index dbcabac..5bc90d1 100644 --- a/modules/nixos/base/network.nix +++ b/modules/nixos/base/network.nix @@ -3,10 +3,10 @@ lib, ... }: let - cfg = config.getchoo.base.networking; + cfg = config.base.networking; inherit (lib) mkEnableOption mkIf; in { - options.getchoo.base.networking.enable = mkEnableOption "enable networking"; + options.base.networking.enable = mkEnableOption "networking"; config = mkIf cfg.enable { networking.networkmanager = { |
