nixos-private-dots/modules/home-manager/symlinks.nix
2024-07-31 06:18:16 +03:00

21 lines
No EOL
1 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

let
dir = "backups"; # Имя каталога для бекапов. Мб захочу поменять
in {
home.file = {
# "${dir}".source = "/mnt/${dir}"; # Чтоб остальные симлинки были от ~/backups
# Secrets
# ".password-store".source = "~/${dir}/Backups/.password-store"; # Для утилиты pass
# ".ssh".source = "~/${dir}/.ssh";
# ".config/qobuz-dl".source = "~/${dir}/Media/Music/Qobuz/.config/qobuz-dl/"; # Конфиг для бекапа Qobuz музыки
# Games
# ".local/share/osu-wine/osu!/Replays" = "~/${dir}/Games/osu!/Replays";
# ".local/share/osu-wine/osu!/Skins" = "~/${dir}/Games/osu!/Skins";
# ".local/share/osu-wine/osu!/Songs" = "~/${dir}/Games/osu!/Songs";
# ".local/share/osu-wine/osu!/collection.db" = "~/${dir}/Games/osu!/collection.db";
# ".local/share/osu-wine/osu!/osu!.buliway.cfg" = "~/${dir}/Games/osu!/osu!.buliway.cfg";
# Не знаю на счёт strawberry, obs, chatbox, planify, calibre и браузеров
};
}