mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 19:45:40 +00:00
11 lines
219 B
Nix
11 lines
219 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
users.users.toast = {
|
|
isNormalUser = true;
|
|
description = "toast";
|
|
extraGroups = [ "networkmanager" "wheel" "ydotool" ];
|
|
packages = with pkgs; [];
|
|
shell = pkgs.zsh;
|
|
};
|
|
}
|