mirror of
https://github.com/serokell/deploy-rs.git
synced 2024-11-29 09:42:05 +03:00
16 lines
274 B
Nix
16 lines
274 B
Nix
# 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;
|
|
};
|
|
}
|