Commit 7a2b3060 authored by Felix Buehler's avatar Felix Buehler
Browse files

nixos-option: fix self inclusive src

parent d40ab11e
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -10,7 +10,10 @@
stdenv.mkDerivation {
  name = "nixos-option";

  src = ./.;
  src = lib.fileset.toSource {
    root = ./.;
    fileset = lib.fileset.fileFilter (file: file.name != "default.nix") ./.;
  };
  postInstall = ''
    installManPage ${./nixos-option.8}
  '';