From c23f4ada602d81f68f3fa097cd7c149239f6d725 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Tue, 28 Mar 2023 12:17:41 -0400 Subject: [PATCH] Formatted properly --- flake.nix | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/flake.nix b/flake.nix index ea46fdf..6731df5 100644 --- a/flake.nix +++ b/flake.nix @@ -15,28 +15,28 @@ pkgs = import nixpkgs { inherit system; - config = { - allowUnfree = true; - }; - }; + config = { + allowUnfree = true; + }; + }; in - { - nixosConfigurations.socrates = nixpkgs.lib.nixosSystem { - inherit system; - modules = [ - ./sysConfig - ]; - }; - - - homeConfigurations.bryan = home-manager.lib.homeManagerConfiguration { - inherit pkgs; - modules = [ - ./homeConfig/home.nix - ]; - }; + { + nixosConfigurations.socrates = nixpkgs.lib.nixosSystem { + inherit system; + modules = [ + ./sysConfig + ]; }; + + + homeConfigurations.bryan = home-manager.lib.homeManagerConfiguration { + inherit pkgs; + modules = [ + ./homeConfig/home.nix + ]; + }; + }; }