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