From 67ec9df409c32e872ae54d3cb022b3b7dc438bf0 Mon Sep 17 00:00:00 2001 From: Bryan Ramos Date: Wed, 12 Apr 2023 15:47:55 -0400 Subject: [PATCH] Fixed formatting --- flake.nix | 35 ++++++++++++++++------------------- 1 file changed, 16 insertions(+), 19 deletions(-) diff --git a/flake.nix b/flake.nix index 6731df5..c2a7923 100644 --- a/flake.nix +++ b/flake.nix @@ -20,24 +20,21 @@ }; }; -in - { - nixosConfigurations.socrates = nixpkgs.lib.nixosSystem { - inherit system; - modules = [ - ./sysConfig - ]; - }; + in + { + nixosConfigurations.socrates = nixpkgs.lib.nixosSystem { + inherit system; + modules = [ + ./sysConfig + ]; + }; - - homeConfigurations.bryan = home-manager.lib.homeManagerConfiguration { - inherit pkgs; - modules = [ - ./homeConfig/home.nix - ]; - }; - }; + + homeConfigurations.bryan = home-manager.lib.homeManagerConfiguration { + inherit pkgs; + modules = [ + ./homeConfig/home.nix + ]; + }; + }; } - - -