personalize

This commit is contained in:
Timothy DeHerrera
2022-11-01 17:23:22 -06:00
parent 14079f0511
commit 3d237e7099
14 changed files with 6758 additions and 75 deletions

21
nix/automation/devshells.nix Executable file
View File

@@ -0,0 +1,21 @@
{
inputs,
cell,
}: let
inherit (inputs.nixpkgs) pkgs;
inherit (inputs.std) std;
in {
default = std.lib.mkShell {
name = "blg.nrd.sh";
imports = [std.devshellProfiles.default];
commands = [
{package = cell.packages.astro;}
{package = pkgs.nodejs_latest;}
{package = pkgs.nodePackages_latest.node2nix;}
{package = pkgs.nodePackages_latest.svgo;}
{package = pkgs.nodePackages_latest.yarn;}
{package = pkgs.pngout;}
{package = pkgs.libwebp;}
];
};
}