mirror of
https://mzte.de/git/LordMZTE/dotfiles.git
synced 2024-11-13 21:41:47 +01:00
14 lines
449 B
Text
14 lines
449 B
Text
def "attic bpush" [
|
|
cache:string, # The Attic cache to push to
|
|
flake:string, # The flake reference to build
|
|
...nixargs:string, # Extra arguments for Nix
|
|
--nom(-n), # Use Nom
|
|
] {
|
|
let outpath = (^(if $nom { "nom" } else { "nix" })
|
|
build
|
|
--no-link
|
|
--print-out-paths
|
|
$flake
|
|
...$nixargs)
|
|
attic push $cache $outpath
|
|
}
|