Signed-off-by: Shea Levy <shea@shealevy.com>
This commit is contained in:
Shea Levy 2013-10-16 16:01:27 -04:00
parent 6171f13ed5
commit 418fa3bb33
2 changed files with 14 additions and 14 deletions

View file

@ -35,7 +35,6 @@
./misc/assertions.nix
./misc/check-config.nix
./misc/crashdump.nix
./misc/gurobi.nix
./misc/ids.nix
./misc/lib.nix
./misc/locate.nix
@ -120,6 +119,7 @@
./services/misc/felix.nix
./services/misc/folding-at-home.nix
./services/misc/gpsd.nix
./services/misc/gurobi.nix
./services/misc/nix-daemon.nix
./services/misc/nix-gc.nix
./services/misc/nixos-manual.nix

View file

@ -23,6 +23,7 @@ in {
type = types.nullOr types.string;
};
};
};
config = mkIf (cfg.license != null || cfg.tokenServerAddress != null) {
assertions = [ {
@ -39,5 +40,4 @@ in {
environment.systemPackages = [ pkgs.gurobi ];
};
};
}