ci: add devShells back to nix-fast-build
All checks were successful
Discord / discord commits (push) Has been skipped

This commit is contained in:
matt1432 2024-06-15 22:14:42 -04:00
parent 42d8107399
commit 2d151c4fb8
2 changed files with 10 additions and 4 deletions

View file

@ -140,8 +140,14 @@
formatter = perSystem (_: pkgs: pkgs.alejandra); formatter = perSystem (_: pkgs: pkgs.alejandra);
# For nix-fast-build # For nix-fast-build
checks = checks = let
perSystem (system: pkgs: inherit (nixpkgs.lib) mapAttrs' nameValuePair;
import ./ci.nix {inherit system pkgs self;});
devShells = mapAttrs' (n: nameValuePair "devShell-${n}") self.devShells;
nixosConfigurations =
perSystem (system: pkgs:
import ./ci.nix {inherit system pkgs self;});
in
nixosConfigurations // devShells;
}; };
} }

View file

@ -30,7 +30,7 @@ in {
kb_layout = xkb.layout; kb_layout = xkb.layout;
kb_variant = xkb.variant; kb_variant = xkb.variant;
numlock_by_default = true; numlock_by_default = true;
repeat_rate = 50; repeat_rate = 25;
# Mouse # Mouse
follow_mouse = true; follow_mouse = true;