summary refs log tree commit diff
path: root/modules/user.nix
blob: 2f49569d653529b89389ca88b30c01e644397353 (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" "docker" ];

    hashedPassword = security.password;
    openssh.authorizedKeys.keys = security.keys;

    packages = (with pkgs; []);
  };
}