nixos/home/nyxt/default.nix
Evie Litherland-Smith 7aa0820921 Add nyxt back with temporary (and working) theme
Add teams-for-linux back now that it seems to work with teams v2
2024-04-24 14:02:20 +01:00

21 lines
416 B
Nix

{
pkgs,
fonts,
scheme,
accentColour ? "base07",
...
}: {
home.packages = [pkgs.nyxt];
xdg = {
configFile = {
"nyxt/config.lisp".text = ''
;; Import custom configuration
(nyxt::load-lisp "${./config.lisp}")
;; Define and load custom theme
(nyxt::load-lisp "${./theme.lisp}")
'';
};
dataFile."nyxt/bookmarks.lisp".source = ./bookmarks.lisp;
};
}