Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

update downloads page #597

Merged
merged 9 commits into from
Jan 3, 2025
121 changes: 0 additions & 121 deletions flake.lock

This file was deleted.

16 changes: 0 additions & 16 deletions flake.nix

This file was deleted.

12 changes: 0 additions & 12 deletions nix/default.nix

This file was deleted.

34 changes: 0 additions & 34 deletions nix/dev.nix

This file was deleted.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"version": "1.0.0",
"description": "Official Prism Launcher website",
"scripts": {
"build": "npx eleventy",
"watch": "npx eleventy --watch",
"serve": "npx eleventy --serve",
"start": "npx eleventy --serve",
"build": "eleventy",
"watch": "eleventy --watch",
"serve": "eleventy --serve",
"start": "eleventy --serve",
"debug": "DEBUG=* npx eleventy",
"lint": "markdownlint .",
"lint:fix": "markdownlint --fix .",
Expand Down
23 changes: 23 additions & 0 deletions shell.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
{
pkgs ? import <nixpkgs> {
inherit system;
config = { };
overlays = [ ];
},
system ? builtins.currentSystem,
}:

pkgs.mkShellNoCC {
packages = [
# Node tools
pkgs.nodejs
pkgs.corepack
pkgs.nrr

# Nix tools
pkgs.deadnix
pkgs.nil
pkgs.nixfmt-rfc-style
pkgs.statix
];
}
Loading
Loading