mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-25 21:30:52 +01:00
feat(deployment): make all options defaults
This commit is contained in:
parent
7c30e67f8f
commit
0a97492051
1 changed files with 5 additions and 5 deletions
|
@ -11,11 +11,11 @@ in
|
|||
config = mkIf cfg.enable {
|
||||
|
||||
deployment = {
|
||||
targetHost = "${hostname}.${config.machine.meta.tld}";
|
||||
targetPort = 45;
|
||||
targetUser = "root";
|
||||
allowLocalDeployment = true;
|
||||
buildOnTarget = true;
|
||||
targetHost = lib.mkDefault "${hostname}.${config.machine.meta.tld}";
|
||||
targetPort = lib.mkDefault 45;
|
||||
targetUser = lib.mkDefault "root";
|
||||
allowLocalDeployment = lib.mkDefault true;
|
||||
buildOnTarget = lib.mkDefault true;
|
||||
};
|
||||
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue