feat: add script for easy deployment

This commit is contained in:
Nydragon 2024-09-26 15:03:17 +02:00
parent 5b09139271
commit 9651f73928
Signed by: nydragon
SSH key fingerprint: SHA256:iQnIC12spf4QjWSbarmkD2No1cLMlu6TWoV7K6cYF5g
2 changed files with 17 additions and 0 deletions

View file

@ -85,4 +85,19 @@ in
chmod -R 777 "$file"
end
'';
deploytest = writeFishBin "deploytest" ''
nixos-rebuild test \
--flake ~/.nixconf#"$argv[1]" \
--target-host "$argv[1]" \
--use-remote-sudo &| ${pkgs.nix-output-monitor}/bin/nom
'';
deployswitch = writeFishBin "deployswitch" ''
nixos-rebuild test \
--flake ~/.nixconf#"$argv[1]" \
--target-host "$argv[1]" \
--use-remote-sudo &| ${pkgs.nix-output-monitor}/bin/nom
'';
}

View file

@ -83,6 +83,8 @@
scripts.genswitch
scripts.gentest
scripts.editsym
scripts.deployswitch
scripts.deploytest
];
};
};