2015-10-23 01:26:53 +02:00
|
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
|
|
|
|
# and in the NixOS manual (accessible by running ‘nixos-help’).
|
|
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
2018-01-26 11:54:50 +01:00
|
|
|
|
let
|
|
|
|
|
passwords = import ../passwords.crypt.nix;
|
|
|
|
|
in
|
2015-10-23 01:26:53 +02:00
|
|
|
|
{
|
|
|
|
|
users.mutableUsers = false;
|
|
|
|
|
|
|
|
|
|
users.extraUsers.root = {
|
2018-01-26 11:54:50 +01:00
|
|
|
|
hashedPassword = passwords.users.root;
|
2015-10-23 01:26:53 +02:00
|
|
|
|
openssh.authorizedKeys.keys = ["ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQD3niN5KcIYikRhXTYZCSehI1ZQs+vvG/dZ7KxNVHslfsS+p1yTycXcZFtDDn5vtG2fAo3yksxCk+G10/AWQ+NMOcFKuAi5qTOYSLbEcHVlZ4ko8sDUe3fF79vrCqY7IWbKKjZ4DH77Qs6SXk5GIlNaIzxut8Dpv8qHnkPiPuFgrJC4oGk60ZKmCPvOEpgg9twcdI6ykIxD4Fg+hHgG1p07uSEcm9EADli8RsU3UJ1UBhXMohMC6HrKVBkBX9wTo+zY+xqXxxem6xGNnkNiZLACfhCnjXv39zh85pgFuNv7R8SzVZQ9iRoCmax/w3JtWdDjqoTGgLfJyhMMjNdjVHOx steveej@steveej-laptop"];
|
|
|
|
|
};
|
|
|
|
|
}
|