update basecamp

This commit is contained in:
Asger Juul Brunshøj 2024-08-22 12:50:22 +02:00
parent a46c0d8891
commit c087394a35
2 changed files with 11 additions and 17 deletions

12
flake.lock generated
View File

@ -8,11 +8,11 @@
"rust-overlay": "rust-overlay"
},
"locked": {
"lastModified": 1715174764,
"narHash": "sha256-T5rOAfiJsBRp6sc/cs+rpkWUwnW6WhUaYyhYlQw8g2g=",
"lastModified": 1724310952,
"narHash": "sha256-Hpe6K3kZpVvpG9bz8dvZz4gJOq+5sr93IQ7cfoFjlw4=",
"owner": "plul",
"repo": "basecamp",
"rev": "3be631062c1ce670ce62a406f0bdadf408724916",
"rev": "5b461e4d3ec0f8c0d99cc7c90d371ccd86aacf41",
"type": "github"
},
"original": {
@ -41,11 +41,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1715499532,
"narHash": "sha256-9UJLb8rdi2VokYcfOBQHUzP3iNxOPNWcbK++ENElpk0=",
"lastModified": 1724300212,
"narHash": "sha256-x3jl6OWTs+L9C7EtscuWZmGZWI0iSBDafvg3X7JMa1A=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "af8b9db5c00f1a8e4b83578acc578ff7d823b786",
"rev": "4de4818c1ffa76d57787af936e8a23648bda6be4",
"type": "github"
},
"original": {

View File

@ -9,16 +9,10 @@
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 ];
};
devShells."x86_64-linux".default =
let
pkgs = import inputs.nixpkgs { system = "x86_64-linux"; };
in
inputs.basecamp.mkShell pkgs { packages = [ pkgs.solvespace ]; };
};
}