diff --git a/flake.in.nix b/flake.in.nix index 9fa85b2..49a6ed8 100644 --- a/flake.in.nix +++ b/flake.in.nix @@ -140,8 +140,14 @@ formatter = perSystem (_: pkgs: pkgs.alejandra); # For nix-fast-build - checks = - perSystem (system: pkgs: - import ./ci.nix {inherit system pkgs self;}); + checks = let + inherit (nixpkgs.lib) mapAttrs' nameValuePair; + + devShells = mapAttrs' (n: nameValuePair "devShell-${n}") self.devShells; + nixosConfigurations = + perSystem (system: pkgs: + import ./ci.nix {inherit system pkgs self;}); + in + nixosConfigurations // devShells; }; } diff --git a/modules/hyprland/inputs.nix b/modules/hyprland/inputs.nix index 688d963..f336d11 100644 --- a/modules/hyprland/inputs.nix +++ b/modules/hyprland/inputs.nix @@ -30,7 +30,7 @@ in { kb_layout = xkb.layout; kb_variant = xkb.variant; numlock_by_default = true; - repeat_rate = 50; + repeat_rate = 25; # Mouse follow_mouse = true;