Skip to content

Commit

Permalink
Merge pull request #597 from getchoo-contrib/linux-downloads
Browse files Browse the repository at this point in the history
  • Loading branch information
TayouVR authored Jan 3, 2025
2 parents ec0e0ff + 827150d commit 9c745b6
Show file tree
Hide file tree
Showing 9 changed files with 181 additions and 337 deletions.
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

0 comments on commit 9c745b6

Please sign in to comment.