⬆️ nix flake update

This commit is contained in:
Laureηt 2023-08-08 21:22:42 +02:00
parent b27105c761
commit 4b344dcc5d
Signed by: Laurent
SSH key fingerprint: SHA256:kZEpW8cMJ54PDeCvOhzreNr4FSh6R13CMGH/POoO8DI
4 changed files with 8 additions and 7 deletions

View file

@ -1,3 +1,5 @@
# https://editorconfig.org/
root = true
[*]

2
.envrc
View file

@ -1 +1,3 @@
# https://direnv.net/
use flake

View file

@ -20,11 +20,11 @@
},
"nixpkgs": {
"locked": {
"lastModified": 1690031011,
"narHash": "sha256-kzK0P4Smt7CL53YCdZCBbt9uBFFhE0iNvCki20etAf4=",
"lastModified": 1691368598,
"narHash": "sha256-ia7li22keBBbj02tEdqjVeLtc7ZlSBuhUk+7XTUFr14=",
"owner": "NixOS",
"repo": "nixpkgs",
"rev": "12303c652b881435065a98729eb7278313041e49",
"rev": "5a8e9243812ba528000995b294292d3b5e120947",
"type": "github"
},
"original": {

View file

@ -7,8 +7,5 @@
outputs = { self, nixpkgs, flake-utils }:
flake-utils.lib.eachDefaultSystem (system:
let pkgs = nixpkgs.legacyPackages.${system};
in {
devShell =
pkgs.mkShell { buildInputs = with pkgs; [ julia python3 nodejs ]; };
});
in { devShell = pkgs.mkShell { buildInputs = with pkgs; [ julia ]; }; });
}