1
0
Fork 0
nixos-config/lib/update-system.nix

17 lines
535 B
Nix
Raw Normal View History

2020-05-27 13:20:08 +00:00
{ pkgs, nixos-rebuild }:
let configPath = "/etc/nixos";
in {
update-system = pkgs.writeHaskellScript {
2019-07-31 21:56:52 +00:00
name = "update-system";
2020-10-12 00:33:25 +00:00
bins = [ nixos-rebuild pkgs.nix-output-monitor ];
2019-07-31 21:56:52 +00:00
} ''
2019-07-25 21:35:59 +00:00
main = do
2020-05-16 14:47:52 +00:00
paths <- myNixPath "${configPath}"
2019-07-28 22:51:10 +00:00
args <- getArgs
2020-12-16 18:26:20 +00:00
setEnv "WITH_SECRETS" "false"
2021-01-05 23:59:11 +00:00
nix_build (paths ++ buildSystemParams ++ ["--no-out-link"] ++ remoteBuildParams ++ fmap toString args)
2020-12-16 18:26:20 +00:00
setEnv "WITH_SECRETS" "true"
2021-01-05 23:59:11 +00:00
nixos_rebuild (paths ++ ["switch"] ++ fmap toString args)
2019-07-31 21:56:52 +00:00
'';
2019-08-02 03:17:00 +00:00
}