This commit is contained in:
2023-07-23 00:43:54 +02:00
parent c0fb737314
commit 998a400395
13 changed files with 446 additions and 47 deletions

View File

@@ -6,9 +6,7 @@
overlays = [
(final: prev: rec {
nodejs = prev.nodejs-18_x;
chrome = prev.google-chrome;
firefox = prev.firefox;
webkit = prev.epiphany; # Safari-ish browser
chrome = prev.chromium;
})
];
supportedSystems = [ "x86_64-linux" "aarch64-linux" "x86_64-darwin" "aarch64-darwin" ];
@@ -27,12 +25,9 @@
{
default = pkgs.mkShell {
packages = with pkgs; [
node2nix
nodejs
python
firefox
chrome
webkit
];
};
});