From 7e12c942de2ae00c2594ae31b0acfee1a1ab303e Mon Sep 17 00:00:00 2001 From: Forestcat Date: Sat, 2 Dec 2023 18:30:41 +0100 Subject: [PATCH] ran alejandra formatter over flake.nix --- flake.nix | 29 ++++++++++++++--------------- 1 file changed, 14 insertions(+), 15 deletions(-) diff --git a/flake.nix b/flake.nix index a9f1175..0ac7b62 100644 --- a/flake.nix +++ b/flake.nix @@ -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,18 +18,15 @@ allowUnfree = true; }; }; -in -{ + in { + nixosConfigurations = { + myNixos = nixpkgs.lib.nixosSystem { + specialArgs = {inherit system;}; -nixosConfigurations = { - myNixos = nixpkgs.lib.nixosSystem { - specialArgs = { inherit system; }; - - modules = [ - ./nixos/configuration.nix - ]; + modules = [ + ./nixos/configuration.nix + ]; + }; + }; }; - }; - - }; -} \ No newline at end of file +}