aboutsummaryrefslogtreecommitdiff
path: root/examples/system/configuration.nix
blob: 6d4234af4f13911951015a52cb2cf39c1ef81a94 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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;
  };
}