NOflake/users/vy.nix
2024-03-28 08:54:41 -07:00

22 lines
361 B
Nix

{pkgs, ...}: {
users.users.vy.packages = with pkgs; [
audacity
jellyfin-media-player
keepassxc
onlyoffice-bin
snapper
syncthingtray
yt-dlp
zoom-us
];
fonts.packages = with pkgs; [
noto-fonts-cjk
noto-fonts-color-emoji
];
users.users.vy = {
isNormalUser = true;
extraGroups = ["audio" "video"];
};
}