Add nyxt bookmarks to xdg.dataFile

This commit is contained in:
Evie Litherland-Smith 2024-02-02 07:52:21 +00:00
parent 8d9bd3e607
commit b387f1e363

View file

@ -1,4 +1,7 @@
{pkgs, ...}: { {pkgs, ...}: {
home.packages = [pkgs.nyxt]; home.packages = [pkgs.nyxt];
xdg.configFile."nyxt/config.lisp".source = ./config.lisp; xdg = {
configFile."nyxt/config.lisp".source = ./config.lisp;
dataFile."nyxt/bookmarks.lisp".source = ./bookmarks.lisp;
};
} }