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 + ]; + }; + }; }