Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 697 Bytes

File metadata and controls

32 lines (24 loc) · 697 Bytes

TDA384 Flake

Nix flake for TDA384 Principles of Concurrent Programming course.

Includes Java, Erlang, tsim and tsim_extractor. Will be updated with other packages later in the course.

Installation

Add the flake input to your flake.nix:

{
  inputs.tda384 = {
    url = "github:NixAtChalmers/tda384-flake";
    inputs.nixpkgs.follows = "nixpkgs";
  };
}

Add the system module to configuration.nix which will install the packages:

{ pkgs, inputs, ... }:
{
  imports = [
    inputs.tda384.nixosModules.default
  ];
}

Rebuild your system, you can now start Visual Studio Code and everything should be set up for you.