dotfiles/setup/commands/setup-nix.rkt
2024-02-27 17:32:33 +01:00

8 lines
232 B
Racket

#lang racket
(require "../common.rkt")
(provide run)
(define (run)
(define out (build-path (find-system-path 'home-dir) ".local" "mzte-nix"))
(cmd "nix" "build" ".#mzte-nix" "--impure" "--no-write-lock-file" "--out-link" out))