12 lines
271 B
Nix
12 lines
271 B
Nix
{ pkgs, ... }: {
|
|
home.packages = with pkgs; [
|
|
nyxt
|
|
gst_all_1.gst-libav
|
|
gst_all_1.gst-plugins-base
|
|
gst_all_1.gst-plugins-good
|
|
gst_all_1.gst-plugins-bad
|
|
gst_all_1.gst-plugins-ugly
|
|
];
|
|
xdg.configFile."nyxt/config.lisp".source = ./config.lisp;
|
|
}
|