mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-02-13 06:19:01 +00:00
17 lines
202 B
Nix
17 lines
202 B
Nix
let sources = import ./npins;
|
|
in { pkgs ? import sources.nixos-stable { } }:
|
|
|
|
with pkgs;
|
|
|
|
mkShell {
|
|
inputsFrom = [ nix ];
|
|
|
|
packages = [
|
|
npins
|
|
nixdoc
|
|
|
|
treefmt
|
|
nixfmt-rfc-style
|
|
];
|
|
}
|