My dotfiles for my nixos machines and infra
1let
2 sources = import ./modules/npins;
3 pkgs = import sources.nixpkgs-stable { };
4 unstable_pkgs = import sources.nixpkgs-unstable { };
5 # wire = import sources.wire;
6in
7pkgs.mkShell {
8 strictDeps = true;
9 packages = [
10 # wire.packages.${builtins.currentSystem}.wire
11 unstable_pkgs.npins
12 pkgs.just
13 ];
14
15 shellHook = ''
16 export NPINS_DIRECTORY="modules/npins"
17
18 # export PS1="(dotfiles) $PS1"
19 '';
20}