From dc9ac237ff54561eb504d2130ad2401534bf3c2d Mon Sep 17 00:00:00 2001 From: NullBite Date: Thu, 8 Feb 2024 15:11:14 +0100 Subject: [PATCH] Rename (nixfiles.common) window-manager to wm --- system/common/wm.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/system/common/wm.nix b/system/common/wm.nix index d3bd487..30b6f20 100644 --- a/system/common/wm.nix +++ b/system/common/wm.nix @@ -1,7 +1,7 @@ { pkgs, lib, config, options, ...}: let inherit (lib) mkDefault mkIf mkEnableOption; - cfg = config.nixfiles.common.window-manager; + cfg = config.nixfiles.common.wm; in { config = mkIf cfg.enable { @@ -16,6 +16,6 @@ in }; }; options = { - nixfiles.common.window-manager.enable = mkEnableOption "common window manager configuration"; + nixfiles.common.wm.enable = mkEnableOption "common window manager configuration"; }; }