diff options
Diffstat (limited to '')
-rw-r--r-- | examples/system/configuration.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/examples/system/configuration.nix b/examples/system/configuration.nix new file mode 100644 index 0000000..6d4234a --- /dev/null +++ b/examples/system/configuration.nix @@ -0,0 +1,15 @@ +# SPDX-FileCopyrightText: 2020 Serokell <https://serokell.io/> +# +# SPDX-License-Identifier: MPL-2.0 + +{ + imports = [ ./common.nix ]; + + networking.hostName = "example-nixos-system"; + + users.users.hello = { + isNormalUser = true; + password = ""; + uid = 1010; + }; +} |