diff --git a/lib/modules/hyprland.nix b/lib/modules/hyprland.nix deleted file mode 100644 index 1cf2829..0000000 --- a/lib/modules/hyprland.nix +++ /dev/null @@ -1,17 +0,0 @@ -{ user }: { lib, pkgs, config, ... }: -with lib; -let - cfg = config.roles.hyprland; -in -{ - options.roles = { - hyprland = { - enable = mkEnableOption "hyprland"; - }; - }; - - config = mkIf cfg.enable { - home-manager.users.${user}.imports = [{ - }]; - }; -}