diff --git a/flake.nix b/flake.nix index bfee6c2..d2c8eac 100644 --- a/flake.nix +++ b/flake.nix @@ -81,6 +81,7 @@ overlays = { outputs, ... }: { nixpkgs.overlays = with outputs.overlays; [ #unstable-packages + stable-packages additions modifications nur.overlays.default diff --git a/modules/graphical/code.nix b/modules/graphical/code.nix index 0203afb..45120c7 100644 --- a/modules/graphical/code.nix +++ b/modules/graphical/code.nix @@ -14,7 +14,7 @@ in documentation.dev.enable = true; environment.systemPackages = with pkgs; [ man-pages - jetbrains.idea-ultimate + stable.jetbrains.idea-ultimate typescript insomnia nodejs_22 # needed for tabby extension diff --git a/overlays.nix b/overlays.nix index e249f8d..288517d 100644 --- a/overlays.nix +++ b/overlays.nix @@ -91,10 +91,10 @@ in # config.permittedInsecurePackages = [ "electron-27.3.11" ]; # }; #}; - #stable-packages = final: _prev: { - # stable = import inputs.nixpkgs { - # system = final.system; - # config.allowUnfree = true; - # }; - #}; + stable-packages = final: _prev: { + stable = import inputs.nixpkgs { + system = final.system; + config.allowUnfree = true; + }; + }; }