From 4cf6a3bbd898869135e05200376c7f42f69bb852 Mon Sep 17 00:00:00 2001 From: tomoron Date: Sun, 16 Mar 2025 16:11:48 +0100 Subject: [PATCH] remove vms from sync (unoptimized data transfert) and change downloads folder name --- homeConfigs/hosts/ft.nix | 2 +- homeConfigs/hosts/laptop.nix | 2 +- homeConfigs/modules/sync.nix | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/homeConfigs/hosts/ft.nix b/homeConfigs/hosts/ft.nix index 22d52d3..926924e 100644 --- a/homeConfigs/hosts/ft.nix +++ b/homeConfigs/hosts/ft.nix @@ -14,7 +14,7 @@ mods.sync.homeFolder = "/sgoinfre/goinfre/Perso/tomoron"; mods.sync.defaultSynced = false; - mods.sync.syncedAdditions = [ "42_desktop" "downloads" ]; + mods.sync.syncedAdditions = [ "42_desktop" "Downloads" ]; mods.sync.customHostName = "pc42"; programs.bash.profileExtra = diff --git a/homeConfigs/hosts/laptop.nix b/homeConfigs/hosts/laptop.nix index 370baad..1f342e0 100644 --- a/homeConfigs/hosts/laptop.nix +++ b/homeConfigs/hosts/laptop.nix @@ -40,5 +40,5 @@ blender ]; - mods.sync.syncedAdditions = ["VirtualBox VMs"]; +#mods.sync.syncedAdditions = ["VirtualBox VMs"]; } diff --git a/homeConfigs/modules/sync.nix b/homeConfigs/modules/sync.nix index 48c0844..bec1648 100644 --- a/homeConfigs/modules/sync.nix +++ b/homeConfigs/modules/sync.nix @@ -1,7 +1,7 @@ { lib, config, ... }: let - defPathLst = ["desktop" "42_desktop" "downloads"]; + defPathLst = ["desktop" "42_desktop" "Downloads"]; in { options.mods.sync = {