santorini block base update
This commit is contained in:
24
flake.nix
Normal file
24
flake.nix
Normal 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 ];
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user