dotfiles/setup/commands/setup-nix.rkt

8 lines
203 B
Racket
Raw Normal View History

2024-02-27 17:31:04 +01:00
#lang racket
(require "../common.rkt")
(provide run)
(define (run)
2024-05-09 22:42:13 +02:00
(cmd "nix" "profile" "install" ".#mzte-nix" "--impure")
(cmd "nix" "build" ".#cgnix" "--impure" "--out-link" "nix/cgnix/nix.lua"))