mirror of
https://github.com/SebastianStork/nixos-installer.git
synced 2026-01-21 13:21: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 =
|
outputs =
|
||||||
{ flake-parts, ... }@inputs:
|
{ flake-parts, ... }@inputs:
|
||||||
flake-parts.lib.mkFlake { inherit inputs; } (
|
flake-parts.lib.mkFlake { inherit inputs; } {
|
||||||
{ inputs, ... }:
|
systems = [ "x86_64-linux" ];
|
||||||
{
|
|
||||||
systems = [ "x86_64-linux" ];
|
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
./flake/dev-shells.nix
|
./flake/dev-shells.nix
|
||||||
./flake/formatter.nix
|
./flake/formatter.nix
|
||||||
./flake/image-generators.nix
|
./flake/image-generators.nix
|
||||||
];
|
];
|
||||||
}
|
};
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
perSystem =
|
perSystem =
|
||||||
{ pkgs, system, ... }:
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
devShells.default = pkgs.mkShell {
|
devShells.default = pkgs.mkShell {
|
||||||
packages = [
|
packages = [
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue