santorini block base update

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

1
.envrc Normal file
View File

@ -0,0 +1 @@
use flake

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
/.direnv/

104
flake.lock generated Normal file
View File

@ -0,0 +1,104 @@
{
"nodes": {
"basecamp": {
"inputs": {
"nixpkgs": [
"nixpkgs"
],
"rust-overlay": "rust-overlay"
},
"locked": {
"lastModified": 1715174764,
"narHash": "sha256-T5rOAfiJsBRp6sc/cs+rpkWUwnW6WhUaYyhYlQw8g2g=",
"owner": "plul",
"repo": "basecamp",
"rev": "3be631062c1ce670ce62a406f0bdadf408724916",
"type": "github"
},
"original": {
"owner": "plul",
"repo": "basecamp",
"type": "github"
}
},
"flake-utils": {
"inputs": {
"systems": "systems"
},
"locked": {
"lastModified": 1705309234,
"narHash": "sha256-uNRRNRKmJyCRC/8y1RqBkqWBLM034y4qN7EprSdmgyA=",
"owner": "numtide",
"repo": "flake-utils",
"rev": "1ef2e671c3b0c19053962c07dbda38332dcebf26",
"type": "github"
},
"original": {
"owner": "numtide",
"repo": "flake-utils",
"type": "github"
}
},
"nixpkgs": {
"locked": {
"lastModified": 1715499532,
"narHash": "sha256-9UJLb8rdi2VokYcfOBQHUzP3iNxOPNWcbK++ENElpk0=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "af8b9db5c00f1a8e4b83578acc578ff7d823b786",
"type": "github"
},
"original": {
"owner": "NixOS",
"ref": "nixpkgs-unstable",
"repo": "nixpkgs",
"type": "github"
}
},
"root": {
"inputs": {
"basecamp": "basecamp",
"nixpkgs": "nixpkgs"
}
},
"rust-overlay": {
"inputs": {
"flake-utils": "flake-utils",
"nixpkgs": [
"basecamp",
"nixpkgs"
]
},
"locked": {
"lastModified": 1714616033,
"narHash": "sha256-JcWAjIDl3h0bE/pII0emeHwokTeBl+SWrzwrjoRu7a0=",
"owner": "oxalica",
"repo": "rust-overlay",
"rev": "3e416d5067ba31ff8ac31eeb763e4388bdf45089",
"type": "github"
},
"original": {
"owner": "oxalica",
"repo": "rust-overlay",
"type": "github"
}
},
"systems": {
"locked": {
"lastModified": 1681028828,
"narHash": "sha256-Vy1rq5AaRuLzOxct8nz4T6wlgyUR7zLU309k9mBC768=",
"owner": "nix-systems",
"repo": "default",
"rev": "da67096a3b9bf56a91d16901293e51ba5b49a27e",
"type": "github"
},
"original": {
"owner": "nix-systems",
"repo": "default",
"type": "github"
}
}
},
"root": "root",
"version": 7
}

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 ];
};
};
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

Binary file not shown.