NOflake/users/vy.nix

23 lines
361 B
Nix
Raw Normal View History

2024-02-24 02:30:17 -08:00
{pkgs, ...}: {
2023-08-09 19:05:53 -07:00
users.users.vy.packages = with pkgs; [
2024-03-18 22:45:19 -07:00
audacity
jellyfin-media-player
keepassxc
onlyoffice-bin
snapper
syncthingtray
yt-dlp
zoom-us
];
fonts.packages = with pkgs; [
noto-fonts-cjk
noto-fonts-color-emoji
2023-08-09 19:05:53 -07:00
];
users.users.vy = {
isNormalUser = true;
2024-03-18 22:45:19 -07:00
extraGroups = ["audio" "video"];
2023-08-09 19:05:53 -07:00
};
}