dotfiles/setup/commands/setup-nix.rkt

8 lines
232 B
Racket
Raw Normal View History

2024-02-27 17:31:04 +01:00
#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))