mirror of
https://github.com/SebastianStork/nixos-installer.git
synced 2026-01-21 12:11:35 +01:00
Remove superfluous arguments
This commit is contained in:
parent
a184ad5219
commit
2e762023c8
2 changed files with 9 additions and 12 deletions
19
flake.nix
19
flake.nix
|
|
@ -22,16 +22,13 @@
|
|||
|
||||
outputs =
|
||||
{ flake-parts, ... }@inputs:
|
||||
flake-parts.lib.mkFlake { inherit inputs; } (
|
||||
{ inputs, ... }:
|
||||
{
|
||||
systems = [ "x86_64-linux" ];
|
||||
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||
systems = [ "x86_64-linux" ];
|
||||
|
||||
imports = [
|
||||
./flake/dev-shells.nix
|
||||
./flake/formatter.nix
|
||||
./flake/image-generators.nix
|
||||
];
|
||||
}
|
||||
);
|
||||
imports = [
|
||||
./flake/dev-shells.nix
|
||||
./flake/formatter.nix
|
||||
./flake/image-generators.nix
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
perSystem =
|
||||
{ pkgs, system, ... }:
|
||||
{ pkgs, ... }:
|
||||
{
|
||||
devShells.default = pkgs.mkShell {
|
||||
packages = [
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue