NOflake/users/vy.nix

52 lines
1.2 KiB
Nix
Raw Normal View History

2025-03-08 22:59:11 -08:00
{pkgs, lib, inputs, config, ...}: {
2023-08-09 19:05:53 -07:00
users.users.vy.packages = with pkgs; [
2024-03-18 22:45:19 -07:00
audacity
2024-03-30 19:41:38 -07:00
cosmic-store
2024-03-18 22:45:19 -07:00
jellyfin-media-player
keepassxc
onlyoffice-bin
2024-11-08 21:26:16 -08:00
signal-desktop
2024-03-18 22:45:19 -07:00
snapper
syncthingtray
yt-dlp
zoom-us
2025-03-08 23:05:01 -08:00
toastify
2024-03-18 22:45:19 -07:00
];
2024-03-29 12:51:49 -07:00
programs.kdeconnect.enable = true;
2024-03-18 22:45:19 -07:00
fonts.packages = with pkgs; [
2024-12-26 19:35:55 -08:00
noto-fonts-cjk-sans
noto-fonts-cjk-serif
2024-03-18 22:45:19 -07:00
noto-fonts-color-emoji
2023-08-09 19:05:53 -07:00
];
2024-03-30 19:41:38 -07:00
services.flatpak.enable = true;
2024-04-29 13:53:43 -07:00
services.snapper.configs = {
home = {
SUBVOLUME = "/home";
ALLOW_USERS = ["vy"];
TIMELINE_CREATE = true;
TIMELINE_CLEANUP = true;
2024-10-14 22:53:57 -07:00
TIMELINE_LIMIT_HOURLY = 5;
TIMELINE_LIMIT_DAILY = 7;
2024-04-29 13:53:43 -07:00
};
};
services.snapper.snapshotInterval = "*:0/5";
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"];
2025-03-08 22:59:11 -08:00
shell = pkgs.nushell;
2023-08-09 19:05:53 -07:00
};
2024-06-01 17:07:25 -07:00
users.users.root.openssh.authorizedKeys.keys = [
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIJKLOGhoTauV+yBide0qYQzZ/0rRw7ImfrOTvuZxjIFl"
];
2025-03-08 22:35:46 -08:00
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
}