Add nextcloud dav to bookmarks

This commit is contained in:
Alexander Bantyev 2020-12-25 20:38:09 +03:00
parent 5d7b61d0c2
commit fa507f3e29
Signed by: balsoft
GPG Key ID: E081FF12ADCB4AD5

View File

@ -11,10 +11,10 @@
services.gvfs.enable = true;
home-manager.users.balsoft = {
xdg.configFile."gtk-3.0/bookmarks".text = builtins.concatStringsSep "\n" ([
"file:///home/balsoft/projects"
] ++ map (machine: "sftp://${machine}/home/balsoft ${machine}") (builtins.attrNames config.devices));
xdg.userDirs = {
enable = true;
};
"file:///home/balsoft/projects Projects"
"davs://nextcloud.balsoft.ru/remote.php/dav/files/balsoft nextcloud.balsoft.ru"
] ++ map (machine: "sftp://${machine}/home/balsoft ${machine}")
(builtins.attrNames config.devices));
xdg.userDirs.enable = true;
};
}