systems/users/pml.nix
2025-12-17 10:38:31 +01:00

22 lines
286 B
Nix

{ pkgs, ... }:
{
programs.zsh.enable = true;
users.users.pml = {
isNormalUser = true;
shell = pkgs.zsh;
extraGroups = [
"i2c"
"wheel"
];
packages = with pkgs; [
alacritty
git
vim
mpv
chezmoi
fuzzel
];
};
}