blob: 2ca826b7528d10c0d820e0fb1f21dd1d520184a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ config, pkgs, security, ... }:
{
users.mutableUsers = false;
users.users.mel = {
isNormalUser = true;
description = "Mel";
shell = pkgs.fish;
extraGroups = [ "networkmanager" "wheel" ];
hashedPassword = security.password;
openssh.authorizedKeys.keys = security.keys;
packages = (with pkgs; []);
};
}
|