1
0
Fork 0

Don‘t use nom by default

This commit is contained in:
Malte Brandy 2021-01-06 00:59:11 +01:00
parent 83d4cd3422
commit 97c1e6c232
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
2 changed files with 4 additions and 4 deletions

View file

@ -37,7 +37,7 @@ in {
say "Building ~/.modes for apollo"
nixPath <- myNixPath "${configPath}"
setEnv "WITH_SECRETS" "false"
nix_build nixPath (params ++ remoteBuildParams) &!> StdOut |> nom
nix_build nixPath (params ++ remoteBuildParams)
setEnv "WITH_SECRETS" "true"
nix_build nixPath params
activate_mode
@ -53,7 +53,7 @@ in {
nixPath <- myNixPath "${configPath}"
mode <- getMode
say [i|Quick switching to mode #{mode} ...|]
home_manager (nixPath <> ["switch", "-A", [i|apollo-#{mode}|]]) &!> StdOut |> nom
home_manager (nixPath <> ["switch", "-A", [i|apollo-#{mode}|]])
update_modes
'';
selectMode = pkgs.writeHaskellScript {

View file

@ -9,8 +9,8 @@ in {
paths <- myNixPath "${configPath}"
args <- getArgs
setEnv "WITH_SECRETS" "false"
nix_build (paths ++ buildSystemParams ++ ["--no-out-link"] ++ remoteBuildParams ++ fmap toString args) &!> StdOut |> nom
nix_build (paths ++ buildSystemParams ++ ["--no-out-link"] ++ remoteBuildParams ++ fmap toString args)
setEnv "WITH_SECRETS" "true"
nixos_rebuild (paths ++ ["switch"] ++ fmap toString args) &!> StdOut |> nom
nixos_rebuild (paths ++ ["switch"] ++ fmap toString args)
'';
}