meat/lib/commands/cook.ml
2026-05-19 23:38:14 +10:00

9 lines
326 B
OCaml

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