11 lines
253 B
Nix
11 lines
253 B
Nix
{pkgs, ...}: {
|
|
home.packages = [pkgs.nyxt];
|
|
xdg = {
|
|
configFile = {
|
|
"nyxt/config.lisp".source = ./config.lisp;
|
|
"nyxt/theme.lisp".source = ./default.mustache;
|
|
};
|
|
dataFile."nyxt/bookmarks.lisp".source = ./bookmarks.lisp;
|
|
};
|
|
}
|