diff --git a/flake.nix b/flake.nix index d0ff0fa..9472449 100644 --- a/flake.nix +++ b/flake.nix @@ -52,25 +52,25 @@ , ... } @ inputs: let - # forAllSystems = nixpkgs.lib.genAttrs [ - # "aarch64-linux" - # "i686-linux" - # "x86_64-linux" - # "aarch64-darwin" - # "x86_64-darwin" - # ]; inherit (self) outputs; + forAllSystems = nixpkgs.lib.genAttrs [ + "aarch64-linux" + "i686-linux" + "x86_64-linux" + "aarch64-darwin" + "x86_64-darwin" + ]; in rec { - # packages = forAllSystems (system: - # let pkgs = nixpkgs.legacyPackages.${system}; - # in import ./pkgs { inherit pkgs; } - # ); + packages = forAllSystems (system: + let pkgs = nixpkgs.legacyPackages.${system}; + in import ./pkgs { inherit pkgs; } + ); - # devShells = forAllSystems (system: - # let pkgs = nixpkgs.legacyPackages.${system}; - # in import ./shell.nix { inherit pkgs; } - # ); + devShells = forAllSystems (system: + let pkgs = nixpkgs.legacyPackages.${system}; + in import ./shell.nix { inherit pkgs; } + ); overlays = import ./overlays; nixosModules = import ./modules/nixos;