The NIX update

This commit is contained in:
2024-10-09 16:55:47 +01:00
parent da1ac8eb6f
commit aace32af13
341 changed files with 1136 additions and 44347 deletions

14
nix-shells/prism.nix Normal file
View File

@@ -0,0 +1,14 @@
let
nixpkgs = fetchTarball "https://github.com/NixOS/nixpkgs/tarball/nixos-24.05";
pkgs = import nixpkgs { config = {}; overlays = []; };
in
pkgs.mkShellNoCC {
packages = with pkgs; [
prismlauncher
];
shellHook = ''
prismlauncher
'';
}