config: update devshell nixpkgs instance

This commit is contained in:
Gabriel Arazas 2023-12-24 18:35:30 +08:00
parent 39c0bb2d8f
commit a31605ebd0
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -440,8 +440,13 @@
# My several development shells for usual type of projects. This is much
# more preferable than installing all of the packages at the system
# configuration (or even home environment).
devShells = forAllSystems (system:
let pkgs = import nixpkgs { inherit system overlays; };
devShells = forAllSystems (system: let
pkgs = import nixpkgs {
inherit system;
overlays = overlays ++ [
inputs.nur.overlay
];
};
in {
default = import ./shell.nix { inherit pkgs; };
docs = import ./docs/shell.nix { inherit pkgs; };