This commit is contained in:
Bryan Ramos 2024-06-01 22:47:00 -04:00
parent 71f95690c3
commit 7872f666ca
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
2 changed files with 6 additions and 9 deletions

View file

@ -79,6 +79,11 @@
modules = [ ./src/system/machines/workstation ];
};
devShells.${system}.default = callPackage ./shell.nix {};
devShells.${system}.default = mkShell {
name = "devShell";
packages = [
just
];
};
};
}

View file

@ -1,8 +0,0 @@
{ pkgs ? import <nixpkgs> {} }:
with pkgs;
mkShell {
packages = [
just
];
}