9 lines
346 B
OCaml
9 lines
346 B
OCaml
let run () =
|
|
print_string Common.header;
|
|
Common.meat_print "PREPARING SUSPICIOUS MEATS..";
|
|
let build_target =
|
|
Unix.getenv "MEATS" ^ "#nixosConfigurations." ^ Unix.gethostname ()
|
|
^ ".config.system.build.toplevel"
|
|
in
|
|
Common.do_cmd @@ "nix build --no-link " ^ build_target ^ " --show-trace" |> ignore;
|
|
print_string Common.footer
|