diff --git a/flake.lock b/flake.lock index 7faabfa..948d0f6 100644 --- a/flake.lock +++ b/flake.lock @@ -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": { diff --git a/flake.nix b/flake.nix index 86f6d61..cb13c1d 100644 --- a/flake.nix +++ b/flake.nix @@ -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 ]; }; }; }