actually using unison intead of doing weird things
This commit is contained in:
@ -6,7 +6,7 @@
|
||||
# By: tomoron <tomoron@student.42angouleme.fr> +#+ +:+ +#+ #
|
||||
# +#+#+#+#+#+ +#+ #
|
||||
# Created: 2024/10/17 18:15:38 by tomoron #+# #+# #
|
||||
# Updated: 2025/02/28 19:04:49 by tomoron ### ########.fr #
|
||||
# Updated: 2025/03/05 23:44:33 by tomoron ### ########.fr #
|
||||
# #
|
||||
# **************************************************************************** #
|
||||
|
||||
@ -68,7 +68,7 @@
|
||||
ref = "master";
|
||||
}}/themes";
|
||||
|
||||
".local/bin/desk_sync".source = dotfiles/local/bin/desk_sync;
|
||||
# ".local/bin/desk_sync".source = dotfiles/local/bin/desk_sync;
|
||||
};
|
||||
programs.home-manager.enable = true;
|
||||
}
|
||||
|
@ -38,4 +38,6 @@
|
||||
stremio
|
||||
blender
|
||||
];
|
||||
|
||||
mods.sync.syncedAdditions = ["VirtualBox VMs"];
|
||||
}
|
||||
|
@ -1,11 +1,14 @@
|
||||
{ lib, config, ... }:
|
||||
|
||||
let
|
||||
defPathLst = ["Desktop" "Downloads" ".mozilla"];
|
||||
in
|
||||
{
|
||||
options.mods.sync = {
|
||||
enable = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = true;
|
||||
description = "enable usr_sync command";
|
||||
description = "setup unison";
|
||||
};
|
||||
|
||||
homeFolder = lib.mkOption {
|
||||
@ -19,13 +22,28 @@
|
||||
default = "/raid/pc_sync";
|
||||
description = "where on the server";
|
||||
};
|
||||
|
||||
defaultSynced = lib.mkOption {
|
||||
type = lib.types.bool;
|
||||
default = true;
|
||||
description = "should it add the default paths";
|
||||
};
|
||||
|
||||
syncedAdditions = lib.mkOption {
|
||||
type = lib.types.listOf lib.types.str;
|
||||
default = [];
|
||||
description = "list of path that will be synced";
|
||||
};
|
||||
};
|
||||
|
||||
config.home.file.".local/bin/usr_sync" = lib.mkIf config.mods.sync.enable {
|
||||
text = ''
|
||||
#!/bin/env
|
||||
unison "${config.mods.sync.homeFolder}" "ssh://tom@tmoron.fr:1880/${config.mods.sync.destFolder}" $@
|
||||
'';
|
||||
config.home.file.".unison/test.prf" = lib.mkIf config.mods.sync.enable {
|
||||
text = (lib.strings.concatStrings [''
|
||||
auto=true
|
||||
root=${config.mods.sync.homeFolder}
|
||||
root=ssh://tom@tmoron.fr:1880/${config.mods.sync.destFolder}
|
||||
''
|
||||
(lib.strings.concatMapStrings (x: "\npath=" + x) (( if config.mods.sync.defaultSynced then defPathLst else [] ) ++ config.mods.sync.syncedAdditions ))
|
||||
]);
|
||||
executable = true;
|
||||
};
|
||||
}
|
||||
|
Reference in New Issue
Block a user