NOflake/users/vy.nix

60 lines
1.4 KiB
Nix
Raw Normal View History

2025-04-30 19:29:00 -07:00
{
pkgs,
lib,
inputs,
config,
...
}: {
users.users.vy.packages = with pkgs; [
oculante
rnote
audacity
cosmic-store
jellyfin-media-player
keepassxc
onlyoffice-bin
signal-desktop
snapper
syncthingtray
yt-dlp
zoom-us
toastify
];
programs.kdeconnect.enable = true;
2024-03-18 22:45:19 -07:00
2025-04-30 19:29:00 -07:00
fonts.packages = with pkgs; [
noto-fonts-cjk-sans
noto-fonts-cjk-serif
noto-fonts-color-emoji
];
2023-08-09 19:05:53 -07:00
2025-04-30 19:29:00 -07:00
services.flatpak.enable = true;
2024-04-29 13:53:43 -07:00
2025-04-30 19:29:00 -07:00
services.snapper.configs = {
home = {
SUBVOLUME = "/home";
ALLOW_USERS = ["vy"];
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
TIMELINE_LIMIT_HOURLY = 5;
TIMELINE_LIMIT_DAILY = 7;
};
2024-04-29 13:53:43 -07:00
};
2025-04-30 19:29:00 -07:00
services.snapper.snapshotInterval = "*:0/5";
2024-04-29 13:53:43 -07:00
2025-04-30 19:29:00 -07:00
users.users.vy = {
isNormalUser = true;
extraGroups = ["wheel" "audio" "video"];
shell = pkgs.nushell;
};
2024-06-01 17:07:25 -07:00
2025-04-30 19:29:00 -07:00
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJKLOGhoTauV+yBide0qYQzZ/0rRw7ImfrOTvuZxjIFl"
];
home-manager.useGlobalPkgs = true;
home-manager.useUserPackages = true;
home-manager.verbose = true;
home-manager.backupFileExtension = ".hm-bak";
home-manager.users.vy = import ./vy/HOME.nix {inherit inputs pkgs lib config;};
2023-08-09 19:05:53 -07:00
}