profiles/gui: nix-doc

This commit is contained in:
kat witch 2021-05-19 18:53:40 +01:00
parent 6e494e754b
commit a43c3e70e3
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 12 additions and 0 deletions

View file

@ -8,6 +8,7 @@
./firefox.nix
./dns.nix
./nfs.nix
./nix-doc.nix
./mpd.nix
./nixpkgs.nix
./mingetty.nix

11
profiles/gui/nix-doc.nix Normal file
View file

@ -0,0 +1,11 @@
{ pkgs, ... }:
{
nix.extraOptions = ''
plugin-files = ${pkgs.nix-doc}/lib/libnix_doc_plugin.so
'';
environment.systemPackages = with pkgs; [
nix-doc
];
}