PortValhalla/profiles/users/manuel/config.nix

68 lines
1.3 KiB
Nix
Raw Normal View History

2024-08-23 17:43:06 +00:00
{ ... }: {
2024-08-24 16:35:43 +00:00
imports = [
2024-09-03 21:10:35 +00:00
../../../lib/modules/valhalla.nix
2024-08-24 16:35:43 +00:00
];
config = {
valhalla = {
users.manuel = {
2024-09-03 21:11:28 +00:00
displayName = "Manuel Thalmann";
mailAddress = "m@nuth.ch";
2024-08-24 16:35:43 +00:00
oh-my-posh = {
theme = {
source = ./manuel.omp.json;
};
};
};
2024-09-03 21:11:28 +00:00
linux.users.manuel = {
defaultShell = "fish";
groups = [
"wheel"
"nix-users"
];
rclone = {
configurations = {
nextcloud = {
dirName = "Nextcloud";
};
proton = {
dirName = "Proton";
2024-09-20 03:35:06 +00:00
cacheDuration = "2w";
2024-09-03 21:11:28 +00:00
};
};
};
};
windows.users.manuel = {
nextcloud = {
folderSyncs =
let
localPath = "C:/tools/RetroArch-Win64";
remotePath = "/Saved Games/RetroArch";
in [
{
remotePath = "${remotePath}/Saves";
localPath = "${localPath}/saves";
virtualFiles = false;
}
{
remotePath = "${remotePath}/System";
localPath = "${localPath}/system";
}
];
};
};
2024-08-24 16:35:43 +00:00
partition = {
os = {
partitions = { };
};
2024-08-23 17:43:06 +00:00
};
};
};
}