dotfiles/users/functionalhacker/configuration.nix

9 lines
168 B
Nix

{ config, pkgs, ... }:
{
users.users.functionalhacker = {
description = "Marko";
isNormalUser = true;
extraGroups = [ "networkmanager" "wheel" ];
};
}