Create NixOS module

This commit is contained in:
2024-11-16 15:16:29 +01:00
parent d167ced2bf
commit c82234710f
2 changed files with 58 additions and 1 deletions

View File

@@ -19,5 +19,11 @@
oh-importer = pkgs.callPackage ./package.nix {};
default = oh-importer;
};
});
})
// {
nixosModules = rec {
oh-importer = import ./module.nix self;
default = oh-importer;
};
};
}