nixcfg/hosts/mauville/home.nix

146 lines
4.1 KiB
Nix

{
config,
inputs,
lib,
pkgs,
...
}: {
home-manager = {
sharedModules = [
{
programs.vscode.userSettings = {
"workbench.colorTheme" = lib.mkForce "Catppuccin Mocha";
"workbench.iconTheme" = lib.mkForce "catppuccin-mocha";
};
xdg.userDirs.music = "/mnt/Media/Music";
ar.home = {
desktop = {
hyprland.autoSuspend = false;
sway.autoSuspend = false;
};
theme = lib.mkForce {
enable = true;
gtk = {
name = "catppuccin-mocha-mauve-compact+normal";
package = pkgs.catppuccin-gtk.override {
accents = ["mauve"];
size = "compact";
variant = "mocha";
tweaks = ["normal"];
};
};
qt = {
name = "Catppuccin-Mocha-Mauve";
package = pkgs.catppuccin-kvantum.override {
accent = "Mauve";
variant = "Mocha";
};
};
iconTheme = {
name = "Papirus-Light";
package = pkgs.catppuccin-papirus-folders.override {
flavor = "mocha";
accent = "mauve";
};
};
cursorTheme = {
name = "catppuccin-mocha-dark-cursors";
size = 32;
package = pkgs.catppuccin-cursors.mochaDark;
};
colors = {
preferDark = true;
text = "#FAFAFA";
background = "#232634";
primary = "#CA9EE6";
secondary = "#99D1DB";
inactive = "#626880";
shadow = "#1A1A1A";
};
};
};
}
];
users.aly = lib.mkForce {
imports = [../../homes/aly];
systemd.user = {
services = {
backblaze-sync = {
Unit = {
Description = "Backup to Backblaze.";
};
Service = {
ExecStart = "${pkgs.writeShellScript "backblaze-sync" ''
declare -A backups
backups=(
['/home/aly/pics/camera']="b2://aly-camera"
['/home/aly/sync']="b2://aly-sync"
['/mnt/Archive/Archive']="b2://aly-archive"
['/mnt/Media/Audiobooks']="b2://aly-audiobooks"
['/mnt/Media/Music']="b2://aly-music"
)
# Recursively backup folders to B2 with sanity checks.
for folder in "''${!backups[@]}"; do
if [ -d "$folder" ] && [ "$(ls -A "$folder")" ]; then
${lib.getExe pkgs.backblaze-b2} sync --delete $folder ''${backups[$folder]}
else
echo "$folder does not exist or is empty."
exit 1
fi
done
''}";
};
};
build-hosts = {
Unit = {
Description = "Build nixosConfiguration for each host.";
};
Service = {
ExecStart = "${pkgs.writeShellScript "build-hosts" ''
hosts=(
fallarbor
lavaridge
petalburg
rustboro
)
for h in "''${hosts[@]}"; do
nix build github:alyraffauf/nixcfg#nixosConfigurations.$h.config.system.build.toplevel
done
''}";
};
};
};
timers = {
backblaze-sync = {
Unit = {
Description = "Daily backups to Backblaze.";
};
Install = {
WantedBy = ["timers.target"];
};
Timer = {
OnCalendar = "*-*-* 03:00:00";
};
};
build-hosts = {
Unit = {
Description = "Build hosts daily.";
};
Install = {
WantedBy = ["timers.target"];
};
Timer = {
OnCalendar = "*-*-* 06:00:00";
};
};
};
};
};
};
}