mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-11 20:43:00 +01:00
7 lines
203 B
Racket
7 lines
203 B
Racket
#lang racket
|
|
(require "../common.rkt")
|
|
(provide run)
|
|
|
|
(define (run)
|
|
(cmd "nix" "profile" "install" ".#mzte-nix" "--impure")
|
|
(cmd "nix" "build" ".#cgnix" "--impure" "--out-link" "nix/cgnix/nix.lua"))
|