ran alejandra formatter over flake.nix

This commit is contained in:
Forestcat 2023-12-02 18:30:41 +01:00
parent b50bc05516
commit 7e12c942de

View file

@ -5,8 +5,10 @@
nixpkgs.url = "github:nixos/nixpkgs/nixos-23.05";
};
outputs = { self, nixpkgs }:
let
outputs = {
self,
nixpkgs,
}: let
system = "x86_64-linux";
pkgs = import nixpkgs {
@ -16,9 +18,7 @@
allowUnfree = true;
};
};
in
{
in {
nixosConfigurations = {
myNixos = nixpkgs.lib.nixosSystem {
specialArgs = {inherit system;};
@ -28,6 +28,5 @@ nixosConfigurations = {
];
};
};
};
}