Remove extra definitions

This commit is contained in:
Evie Litherland-Smith 2023-06-27 07:38:02 +01:00
parent 4e94be6e82
commit 29e958929a
2 changed files with 3 additions and 34 deletions

View file

@ -17,16 +17,5 @@
user = "xenia";
group = "users";
extraOptions.options.globalAnnounceEnabled = true;
folders = {
"Archive".devices = ["monarch" "vanguard"];
"Books".devices = ["monarch" "northstar" "remarkable" "vanguard"];
"Comics".devices = ["ion" "monarch" "northstar" "vanguard"];
"Documents".devices = ["monarch" "northstar" "vanguard"];
"Exports".devices = ["monarch" "vanguard"];
"Notes".devices = ["ion" "monarch" "northstar" "vanguard"];
"Pictures".devices = ["ion" "monarch" "northstar" "vanguard"];
"Xochitl".devices = ["remarkable"];
"Zotero".devices = ["ion"];
};
};
}

View file

@ -1,14 +1,7 @@
{...}: {
imports = [
./default.nix
./devices/Ion.nix
./devices/Legion.nix
./devices/Monarch.nix
./devices/Northstar.nix
./devices/Remarkable.nix
./folders/camera.nix
./folders/comics.nix
./folders/movies.nix
./folders/notes.nix
./folders/pictures.nix
];
@ -17,22 +10,9 @@
group = "users";
extraOptions.options.globalAnnounceEnabled = true;
folders = {
"Comics" = {
path = "~/Documents/Comics";
devices = ["ion" "legion" "monarch" "northstar"];
};
"Movies" = {
path = "~/Videos";
devices = ["ion" "legion" "monarch" "northstar"];
};
"Notes" = {
path = "~/notes";
devices = ["ion" "legion" "monarch" "northstar"];
};
"Pictures" = {
path = "~/Pictures";
devices = ["ion" "legion" "monarch" "northstar"];
};
"Comics".path = "~/Documents/Comics";
"Notes".path = "~/notes";
"Pictures".path = "~/Pictures";
};
};
}