nixos/home/nyxt/default.nix

21 lines
416 B
Nix
Raw Normal View History

{
pkgs,
fonts,
scheme,
accentColour ? "base07",
...
}: {
2024-01-30 14:21:50 +00:00
home.packages = [pkgs.nyxt];
2024-02-02 07:52:21 +00:00
xdg = {
configFile = {
"nyxt/config.lisp".text = ''
;; Import custom configuration
(nyxt::load-lisp "${./config.lisp}")
;; Define and load custom theme
(nyxt::load-lisp "${./theme.lisp}")
'';
};
2024-02-02 07:52:21 +00:00
dataFile."nyxt/bookmarks.lisp".source = ./bookmarks.lisp;
};
2024-01-17 16:22:05 +00:00
}