diff options
Diffstat (limited to '')
-rw-r--r-- | examples/system/bare.nix | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/system/bare.nix b/examples/system/bare.nix new file mode 100644 index 0000000..46ba3b2 --- /dev/null +++ b/examples/system/bare.nix @@ -0,0 +1,10 @@ +# SPDX-FileCopyrightText: 2020 Serokell <https://serokell.io/> +# +# SPDX-License-Identifier: MPL-2.0 + +{ + imports = [ ./common.nix ]; + + # Use that when deploy scripts asks you for a hostname + networking.hostName = "bare-system"; +} |