dotfiles/users/som/configuration.nix

9 lines
148 B
Nix

{ config, pkgs, ... }:
{
users.users.som = {
description = "Som";
isNormalUser = true;
extraGroups = [ "networkmanager" ];
};
}