10 lines
185 B
Nix
10 lines
185 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
home.packages = with pkgs; [ nyxt ];
|
|
xdg.configFile = {
|
|
"nyxt/config.lisp".source = ./config.lisp;
|
|
"nyxt/bookmarks.lisp".source = ./bookmarks.lisp;
|
|
};
|
|
}
|