santorini block base update

This commit is contained in:
2024-05-13 12:00:36 +02:00
parent e5429e19a9
commit a13c6a922b
7 changed files with 11589 additions and 9793 deletions

24
flake.nix Normal file
View File

@@ -0,0 +1,24 @@
{
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
basecamp.url = "github:plul/basecamp";
basecamp.inputs.nixpkgs.follows = "nixpkgs";
};
outputs =
inputs@{ self, ... }:
{
devShells."x86_64-linux".default = inputs.basecamp.mkDevShell {
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
config = {
just.enable = true;
markdown.enable = true;
nix.enable = true;
};
packages = pkgs: [ pkgs.solvespace ];
};
};
}