ran alejandra formatter over flake.nix
This commit is contained in:
parent
b50bc05516
commit
7e12c942de
1 changed files with 14 additions and 15 deletions
27
flake.nix
27
flake.nix
|
@ -5,8 +5,10 @@
|
||||||
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = { self, nixpkgs }:
|
outputs = {
|
||||||
let
|
self,
|
||||||
|
nixpkgs,
|
||||||
|
}: let
|
||||||
system = "x86_64-linux";
|
system = "x86_64-linux";
|
||||||
|
|
||||||
pkgs = import nixpkgs {
|
pkgs = import nixpkgs {
|
||||||
|
@ -16,18 +18,15 @@
|
||||||
allowUnfree = true;
|
allowUnfree = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in
|
in {
|
||||||
{
|
nixosConfigurations = {
|
||||||
|
myNixos = nixpkgs.lib.nixosSystem {
|
||||||
|
specialArgs = {inherit system;};
|
||||||
|
|
||||||
nixosConfigurations = {
|
modules = [
|
||||||
myNixos = nixpkgs.lib.nixosSystem {
|
./nixos/configuration.nix
|
||||||
specialArgs = { inherit system; };
|
];
|
||||||
|
};
|
||||||
modules = [
|
};
|
||||||
./nixos/configuration.nix
|
|
||||||
];
|
|
||||||
};
|
};
|
||||||
};
|
|
||||||
|
|
||||||
};
|
|
||||||
}
|
}
|
Loading…
Reference in a new issue