Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

flake.nix 459B

1234567891011121314151617181920
  1. {
  2. inputs = {
  3. utils.url = "github:numtide/flake-utils";
  4. };
  5. outputs = { self, nixpkgs, utils }:
  6. utils.lib.eachDefaultSystem (system:
  7. let
  8. pkgs = nixpkgs.legacyPackages."${system}";
  9. in rec {
  10. devShell = pkgs.mkShell {
  11. nativeBuildInputs = with pkgs; [
  12. yarn
  13. nodejs-14_x
  14. nodePackages.typescript-language-server
  15. nodePackages.eslint
  16. ];
  17. };
  18. });
  19. }