dotfiles/users/functionalhacker/configuration.nix
2024-09-16 21:57:08 +03:00

10 lines
182 B
Nix

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