From 3b5a73c436eb22e0cda59469263490705e149cb9 Mon Sep 17 00:00:00 2001 From: schererleander Date: Fri, 9 Jan 2026 16:57:15 +0100 Subject: refactor: use flake-parts, change modules structure --- modules/hosts/wooting/default.nix | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 modules/hosts/wooting/default.nix (limited to 'modules/hosts/wooting/default.nix') diff --git a/modules/hosts/wooting/default.nix b/modules/hosts/wooting/default.nix deleted file mode 100644 index b2b78c0..0000000 --- a/modules/hosts/wooting/default.nix +++ /dev/null @@ -1,26 +0,0 @@ -{ - config, - lib, - pkgs, - ... -}: - -let - inherit (lib) mkOption types mkIf; - cfg = config.nx.wooting; -in -{ - options.nx.wooting = { - enable = mkOption { - description = "Setup wootility, udev rules to discover keyboards"; - type = types.bool; - default = false; - }; - }; - config = mkIf cfg.enable { - services.udev.packages = [ pkgs.wooting-udev-rules ]; - environment.systemPackages = with pkgs; [ - wootility - ]; - }; -} -- cgit v1.3.1