This commit is contained in:
Shrek Requiem 2025-02-03 15:46:32 -05:00
parent cd254263dd
commit 028f50f515
1 changed files with 4 additions and 2 deletions

View File

@ -9,10 +9,10 @@
outputs = { self, nixpkgs, nur }: outputs = { self, nixpkgs, nur }:
let let
system = "x86_64-linux"; # or "aarch64-darwin" for M1/M2 Macs system = "x86_64-linux";
pkgs = import nixpkgs { pkgs = import nixpkgs {
inherit system; inherit system;
overlays = [ nur.overlay ]; overlays = [ nur.overlays.default ];
}; };
in { in {
devShells.${system}.default = pkgs.mkShell { devShells.${system}.default = pkgs.mkShell {
@ -37,6 +37,8 @@
python -m venv .venv python -m venv .venv
fi fi
source .venv/bin/activate source .venv/bin/activate
nu
''; '';
}; };
}; };