mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-30 22:57:55 +00:00
config: update devshell nixpkgs instance
This commit is contained in:
parent
39c0bb2d8f
commit
a31605ebd0
@ -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; };
|
||||||
|
Loading…
Reference in New Issue
Block a user