NOflake/users/vy.nix

36 lines
696 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
];
2024-03-29 12:51:49 -07:00
programs.kdeconnect.enable = true;
2024-03-18 22:45:19 -07:00
2024-03-29 12:51:49 -07:00
services.snapper.configs = {
home = {
SUBVOLUME = "/home";
ALLOW_USERS = ["tao"];
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
TIMELINE_LIMIT_HOURLY = "5";
TIMELINE_LIMIT_DAILY = "7";
};
};
services.snapper.snapshotInterval = "*:0/5";
2024-03-18 22:45:19 -07:00
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-29 12:51:49 -07:00
extraGroups = ["wheel" "audio" "video"];
2023-08-09 19:05:53 -07:00
};
}