mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-12-14 21:03:41 +01:00
8 lines
285 B
Racket
8 lines
285 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" "--out-link" out)
|
|
(cmd "nix" "build" ".#cgnix" "--impure" "--out-link" "nix/cgnix/nix.lua"))
|