AquaticOS/modules/hosts/controlstation/aquaticConfig.nix

32 lines
No EOL
632 B
Nix

{ ... }:
{
flake.modules.nixos.controlstation = {
aquaticConfig =
{
backup.repo = "aqua@192.168.0.80:/BACKUP/desktop";
backup.dirs = [
"/home/aqua/.config/zen"
"/home/aqua/.floorp"
"/AI"
"/home/aqua/Desktop"
];
hyprland.monitors = [
{
output = "DP-1";
mode = "2560x1080@200";
position = "0x0";
scale = 1.0;
wpeng = "2554246309";
}
{
output = "HDMI-A-1";
mode = "1920x1080@60";
position = "2561x0";
scale = 1.0;
wpeng = "3201931789";
}
];
};
};
}