My dotfiles for my nixos machines and infra
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

at brr 20 lines 424 B view raw
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}