oizys/hosts/othalan/default.nix

44 lines
705 B
Nix
Raw Normal View History

2024-01-23 11:51:13 -06:00
{
inputs,
pkgs,
...
}: {
imports = with inputs.self.nixosModules; [
nix-ld
2024-01-25 12:23:32 -06:00
virtualbox
2024-01-23 11:51:13 -06:00
restic
];
2024-01-23 15:36:52 -06:00
2024-01-28 16:40:33 -06:00
cli.enable = true;
desktop.enable = true;
2024-01-23 15:12:15 -06:00
2024-01-28 17:39:10 -06:00
languages = {
2024-01-25 12:23:32 -06:00
misc = true;
python = true;
nim = true;
tex = true;
node = true;
2024-01-23 15:36:52 -06:00
};
2024-02-08 12:43:28 -06:00
2024-01-28 16:40:33 -06:00
environment.systemPackages = with pkgs; [
zk
rclone
quarto
];
2024-01-29 10:43:35 -06:00
2024-01-28 16:40:33 -06:00
programs.hyprland.enable = true;
services.vpn.enable = true;
2024-01-23 15:12:15 -06:00
2024-01-23 11:51:13 -06:00
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/"];
};
2024-01-28 13:09:34 -06:00
users.users.daylin.extraGroups = [
2024-01-28 17:39:10 -06:00
"audio"
2024-01-28 13:09:34 -06:00
];
2024-01-23 11:51:13 -06:00
}