mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
38 lines
644 B
Nix
38 lines
644 B
Nix
{ enableAttrs, ... }:
|
|
{
|
|
oizys =
|
|
(enableAttrs [
|
|
"vpn"
|
|
"desktop"
|
|
"hyprland"
|
|
"chrome"
|
|
"docker"
|
|
"nix-ld"
|
|
"vbox"
|
|
"backups"
|
|
])
|
|
// {
|
|
languages = [
|
|
"misc"
|
|
"nim"
|
|
"node"
|
|
"nushell"
|
|
"python"
|
|
"roc"
|
|
"tex"
|
|
"zig"
|
|
];
|
|
};
|
|
|
|
services.restic.backups.gdrive = {
|
|
user = "daylin";
|
|
repository = "rclone:g:archives/othalan";
|
|
passwordFile = "/home/daylin/.config/restic/othalan-pass";
|
|
paths = [
|
|
"/home/daylin/stuff/"
|
|
"/home/daylin/dev/"
|
|
];
|
|
};
|
|
|
|
users.users.daylin.extraGroups = [ "audio" ];
|
|
}
|