aboutsummaryrefslogtreecommitdiff
path: root/flake.nix
blob: 15c17e84f8d832c91df380187eba5e6934283ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
  description = "Aria Shrimpton dissertation";
  inputs = {
    crane.url = "github:ipetkov/crane";
    crane.inputs.nixpkgs.follows = "nixpkgs";
    rust-overlay = {
      url = "github:oxalica/rust-overlay";
      inputs = {
        nixpkgs.follows = "nixpkgs";
      };
    };
  };

  outputs = inputs @ {
    self,
    nixpkgs,
    crane,
    rust-overlay,
  }: let
    system = "x86_64-linux";
    pkgs = import nixpkgs {
      inherit system;
      overlays = [(import rust-overlay)];
    };
    tex-env = pkgs.callPackage ./nix/tex-env.nix inputs;
    racket-env = pkgs.callPackage ./nix/racket-env.nix inputs;
    candelabra = pkgs.callPackage ./nix/candelabra.nix inputs;
  in rec {
    devShells.${system}.default = pkgs.mkShell {
      buildInputs = [
        tex-env
        racket-env

        pkgs.just # command runner
        pkgs.biber # bibliography backend
        pkgs.gnuplot
      ];
    };

    packages.${system}.default = candelabra;

    nixosConfigurations.default = nixpkgs.lib.nixosSystem {
      inherit system;
      specialArgs = {
        inherit inputs tex-env racket-env candelabra;
      };
      modules = [./nix/configuration.nix];
    };
  };
}