keepassxc.scm
| 1 | (define-module (home-config keepassxc) |
| 2 | #:use-module (home) |
| 3 | #:use-module (home keepassxc) |
| 4 | #:export (keepassxc-home)) |
| 5 | |
| 6 | (define keepassxc-home |
| 7 | (user-home keepassxc-home-type |
| 8 | (keepassxc-configuration |
| 9 | (last-databases '("/data/tyreunom/ownCloud/synchro/pass.kdbx")) |
| 10 | (last-dir "/data/tyreunom") |
| 11 | (last-opened-databases '("/data/tyreunom/owncloud/synchro/pass.kdbx"))))) |
| 12 |