mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-11 20:43:00 +01:00
8 lines
232 B
Racket
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))
|