this repo has no description
0
fork

Configure Feed

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

faet: add dev shell

+7
+2
flake.nix
··· 51 51 ''; 52 52 }); 53 53 54 + devShells = forAllSystems (system: pkgs: {default = pkgs.callPackage ./shell.nix {};}); 55 + 54 56 nixosConfigurations = lib.genAttrs hosts (hostname: let 55 57 lib' = import ./lib {inherit lib;}; 56 58 in
+5
shell.nix
··· 1 + { 2 + mkShell, 3 + npins, 4 + }: 5 + mkShell {packages = [npins];}