22 lines
286 B
Nix
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
|
|
];
|
|
};
|
|
}
|