Remove superfluous arguments

This commit is contained in:
SebastianStork 2025-04-07 23:59:09 +02:00
parent a184ad5219
commit 2e762023c8
2 changed files with 9 additions and 12 deletions

View file

@ -22,9 +22,7 @@
outputs =
{ flake-parts, ... }@inputs:
flake-parts.lib.mkFlake { inherit inputs; } (
{ inputs, ... }:
{
flake-parts.lib.mkFlake { inherit inputs; } {
systems = [ "x86_64-linux" ];
imports = [
@ -32,6 +30,5 @@
./flake/formatter.nix
./flake/image-generators.nix
];
}
);
};
}

View file

@ -1,6 +1,6 @@
{
perSystem =
{ pkgs, system, ... }:
{ pkgs, ... }:
{
devShells.default = pkgs.mkShell {
packages = [